ajout de la configuration Docker Compose pour le service timelapse-frontend
This commit is contained in:
31
docker-compose.yml
Normal file
31
docker-compose.yml
Normal 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
|
||||||
Reference in New Issue
Block a user