Add zimit-webapp/docker-compose.yml
This commit is contained in:
parent
9a4a62a8ce
commit
6d6d304139
1 changed files with 19 additions and 0 deletions
19
zimit-webapp/docker-compose.yml
Normal file
19
zimit-webapp/docker-compose.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
services:
|
||||
zimit-webapp:
|
||||
container_name: zimit-webapp
|
||||
image: zimit-webapp:v0.9.5 # L'image sur mon registry
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "2000: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
|
||||
Loading…
Add table
Add a link
Reference in a new issue