ajout de la configuration Docker Compose pour le service timelapse-frontend

This commit is contained in:
2025-03-10 10:54:08 +01:00
parent bfd77bc843
commit 80ef6ab086

31
docker-compose.yml Normal file
View File

@@ -0,0 +1,31 @@
version: '3.8'
services:
timelapse-frontend:
image: nginx:latest
container_name: timelapse-frontend
ports:
- "8093:80"
- "16443:443"
volumes:
- /home/timelapse/nginx:/usr/share/nginx/html
- nginx-config:/etc/nginx
environment:
- NGINX_VERSION=1.27.1
- NJS_VERSION=0.8.5
- NJS_RELEASE=1~bookworm
- PKG_RELEASE=1~bookworm
- DYNPKG_RELEASE=2~bookworm
restart: always
networks:
- bridge
- timelapse_network
volumes:
nginx-config:
driver: local
networks:
bridge:
driver: bridge
timelapse_network:
driver: bridge