Add : Front end

This commit is contained in:
Guillaume-Sanchez
2026-06-29 21:48:17 +02:00
parent d810efec25
commit a099d7cc4e
+7 -3
View File
@@ -1,18 +1,20 @@
services:
backend:
build: .
container_name: cyberusgate_poc
ports:
- "8000:8000"
volumes:
- ./app:/app
environment:
- PYTHONUNBUFFERED=1
networks:
- cyberusgate-network
frontend:
image: nginx:alpine
ports:
- "8888:80"
- "8080:80"
volumes:
# On monte tout le dossier 'web' d'un coup dans le répertoire Nginx
- ./web:/usr/share/nginx/html:ro
networks:
- cyberusgate-network
@@ -20,3 +22,5 @@ services:
networks:
cyberusgate-network:
driver: bridge