Should be able to deploy

This commit is contained in:
cdricms
2025-01-18 21:13:03 +01:00
parent eb9883a1c3
commit 2046a32202
15 changed files with 248 additions and 51 deletions

View File

@@ -1,7 +1,12 @@
services:
latosa-escrima.fr-frontend:
container_name: latosa-frontend
image: cems.dev:5000/latosa-escrima.fr:latest
# image: cems.dev:5000/latosa-escrima.fr:latest
build:
context: ./frontend/
dockerfile: Dockerfile
depends_on:
- latosa-escrima.fr-backend
env_file: .env
ports:
- ${FRONTEND_PORT}:${FRONTEND_DOCKER_PORT}
@@ -9,7 +14,10 @@ services:
networks:
- le-network
latosa-escrima.fr-backend:
restart: always
container_name: latosa-backend
depends_on:
- psql
build:
context: ./backend/
dockerfile: Dockerfile
@@ -35,3 +43,4 @@ volumes:
networks:
le-network:
driver: bridge