Files
rubic-cube/docker-compose.yml
Grzegorz Kucmierz 00063ad57b
Some checks failed
Build and Publish Docker Image / build (push) Has been cancelled
Add Watchtower, fix main component import and update docs
2026-02-15 20:22:59 +01:00

26 lines
485 B
YAML

version: '3.8'
services:
rubic-cube:
image: gitea.7u.pl/gkucmierz/rubic-cube:latest
container_name: rubic-cube
restart: always
ports:
- "8083:80"
networks:
- rubic-net
watchtower:
image: containrrr/watchtower
container_name: watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --interval 60 --cleanup
restart: unless-stopped
networks:
- rubic-net
networks:
rubic-net:
driver: bridge