Correction des ports et des volumes dans docker-compose.yml
Some checks failed
/ deployment (push) Has been cancelled

This commit is contained in:
2025-04-24 00:13:35 +02:00
parent c6fdc6552d
commit 780a7c2901

View File

@@ -3,10 +3,10 @@ services:
image: nginx:latest image: nginx:latest
container_name: timelapse-frontend container_name: timelapse-frontend
ports: ports:
- "8093:80" - "80:80"
- "16443:443" - "443:443"
volumes: volumes:
- /home/timelapse/nginx:/usr/share/nginx/html - ./:/usr/share/nginx/html
- nginx-config:/etc/nginx - nginx-config:/etc/nginx
environment: environment:
- NGINX_VERSION=1.27.1 - NGINX_VERSION=1.27.1
@@ -17,7 +17,6 @@ services:
restart: always restart: always
networks: networks:
- bridge - bridge
- timelapse_network
volumes: volumes:
nginx-config: nginx-config:
@@ -26,5 +25,3 @@ volumes:
networks: networks:
bridge: bridge:
driver: bridge driver: bridge
timelapse_network:
driver: bridge