changed ports to run on my server

This commit is contained in:
2025-08-15 10:12:51 +02:00
parent 5c6373d16d
commit 725cd7e08a
9 changed files with 24 additions and 23 deletions

View File

@@ -1,21 +1,21 @@
services:
# mcs_lose-frontend:
# container_name: mcs_lose-frontend
# build: ./frontend
# ports:
# - "8001:8001"
# environment:
# - CHOKIDAR_USEPOLLING=true
# volumes:
# - ./frontend:/app
# - /app/node_modules
# restart: unless-stopped
mcs_lose-frontend:
container_name: mcs_lose-frontend
build: ./frontend
ports:
- "8501:8501"
environment:
- CHOKIDAR_USEPOLLING=true
volumes:
- ./frontend:/app
- /app/node_modules
restart: unless-stopped
mcs_lose-backend:
container_name: mcs_lose-backend_express
build: ./backend
ports:
- "8002:8002"
- "8502:8502"
environment:
DB_HOST: mysql
DB_USER: root
@@ -37,7 +37,7 @@ services:
volumes:
- mysql-data:/var/lib/mysql
ports:
- "3308:3306"
- "8500:3306"
volumes:
mysql-data: