10 lines
233 B
YAML
10 lines
233 B
YAML
# Watchtower - Auto container updates
|
|
# Automatically updates Docker containers
|
|
version: "3"
|
|
services:
|
|
watchtower:
|
|
image: containrrr/watchtower
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
restart: always
|