Files
weather-app/docker-compose.yml

22 lines
436 B
YAML

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
ports:
- "7001:7001"
volumes:
- ./backend:/bikelane-backend
restart: unless-stopped