Files
weather-app/docker-compose.yml
2025-07-25 17:51:44 +02:00

21 lines
446 B
YAML

services:
# frontend:
# container_name: frontend
# build: ./frontend
# ports:
# - "3003:3003"
# environment:
# - CHOKIDAR_USEPOLLING=true
# volumes:
# - ./frontend:/app
# - /app/node_modules
# restart: unless-stopped
backend:
container_name: backend
build: ./backend
ports:
- "3001:3001"
volumes:
- ./backend:/bikelane-backend
restart: unless-stopped