Adapting compose.yaml

This commit is contained in:
Laurent
2025-03-11 13:35:29 +01:00
parent ab3b4340ec
commit 68a640d932
2 changed files with 7 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ services:
- MARIADB_ROOT_PASSWORD=root
- DB_NAME=letsmeet_db
- DB_USER=letsmeet_user
- DB_PASSWORD=
- DB_PASSWORD=vklbzvkzbkeibv
volumes:
- letsmeet_database:/var/lib/mysql
networks:
@@ -35,7 +35,9 @@ services:
environment:
DB_URL: mysql://database:3306/letsmeet_db
DB_USER: letsmeet_user
DB_PASSWORD:
DB_PASSWORD: vklbzvkzbkeibv
ports:
- "5001:5001"
networks:
- letsmeet_network
depends_on:
@@ -47,6 +49,8 @@ services:
build:
context: ./front
dockerfile: Dockerfile
ports:
- "3001:3001"
networks:
- letsmeet_network
depends_on:

View File

@@ -18,5 +18,4 @@ COPY . .
# build app for production with minification
RUN npm run build
EXPOSE 8080
CMD ["serve", "-s", "dist", "-l", "8080"]
CMD ["serve", "-s", "dist", "-l", "3001"]