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