added docker functionality

This commit is contained in:
2025-08-01 21:23:58 +02:00
parent 62094299d4
commit ee6469379f
2 changed files with 17 additions and 18 deletions

View File

@@ -1,21 +1,20 @@
services:
# frontend:
# container_name: frontend
# build: ./frontend
# ports:
# - "7002:7002"
# environment:
# - CHOKIDAR_USEPOLLING=true
# volumes:
# - ./frontend:/app
# - /app/node_modules
# restart: unless-stopped
backend:
container_name: backend
build: ./backend
frontend:
container_name: frontend
build: ./frontend
ports:
- "7001:7001"
- "7002:7002"
environment:
- CHOKIDAR_USEPOLLING=true
volumes:
- ./backend:/bikelane-backend
- ./frontend:/app
- /app/node_modules
restart: unless-stopped
# backend:
# container_name: backend
# build: ./backend
# ports:
# - "7001:7001"
#volumes:
# - ./backend:/bikelane-backend
# restart: unless-stopped

View File

@@ -9,4 +9,4 @@ COPY . .
EXPOSE 7002
CMD ["npm", "start"]
CMD ["npm", "run", "dev"]