19 lines
679 B
YAML
19 lines
679 B
YAML
services:
|
|
zimit-webapp:
|
|
container_name: zimit-webapp
|
|
image: git.selfitdeploy.com/willy/zimit-webapp:1.0.0 # L'image sur mon registry
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:8080" # Port HTTP
|
|
volumes:
|
|
- /srv/kiwix/zim:/srv/kiwix/zim # Repertoire de sortie pour les fichiers *.zim
|
|
- /var/run/docker.sock:/var/run/docker.sock # Accès au démon Docker de l'hôte
|
|
- ./data:/app/data # Persistance des logs et tâches
|
|
environment:
|
|
- TZ=Europe/Paris
|
|
networks:
|
|
- zimit-net
|
|
|
|
networks:
|
|
zimit-net:
|
|
driver: bridge
|