Linux/Docker/Automation

From Wiki
< Linux‎ | Docker
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Watchtower

  • add to docker-compose.yml:
watchtower:
    image: containrrr/watchtower
    volumes:
     - /var/run/docker.sock:/var/run/docker.sock
     - /root/.docker/config.json:/config.json
    command: --interval 30
    restart: always