Files
timelapse-frontend/docker-compose.yml
Kerboul 780a7c2901
Some checks failed
/ deployment (push) Has been cancelled
Correction des ports et des volumes dans docker-compose.yml
2025-04-24 00:13:35 +02:00

28 lines
519 B
YAML

services:
timelapse-frontend:
image: nginx:latest
container_name: timelapse-frontend
ports:
- "80:80"
- "443:443"
volumes:
- ./:/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
volumes:
nginx-config:
driver: local
networks:
bridge:
driver: bridge