Add : Front end

This commit is contained in:
Guillaume-Sanchez
2026-06-29 21:50:19 +02:00
parent 3e1cc1b841
commit 532075e46d
-3
View File
@@ -1,5 +1,4 @@
services: services:
# Votre backend (API)
backend: backend:
build: . build: .
container_name: cyberusgate_backend container_name: cyberusgate_backend
@@ -10,14 +9,12 @@ services:
networks: networks:
- cyberusgate-network - cyberusgate-network
# Votre frontend statique (Nginx)
frontend: frontend:
image: nginx:alpine image: nginx:alpine
container_name: cyberusgate_frontend container_name: cyberusgate_frontend
ports: ports:
- "8080:80" - "8080:80"
volumes: volumes:
# On monte le dossier 'app' complet dans Nginx
- ./app:/usr/share/nginx/html:ro - ./app:/usr/share/nginx/html:ro
networks: networks:
- cyberusgate-network - cyberusgate-network