Files
weather-app/docker-compose.yml
2025-08-01 01:09:58 +02:00

30 lines
542 B
YAML

services:
# frontend:
# container_name: frontend
# build: ./frontend
# network:
# - proxynet
# ports:
# - "7002:7002"
# environment:
# - CHOKIDAR_USEPOLLING=true
# volumes:
# - ./frontend:/app
# - /app/node_modules
# restart: unless-stopped
backend:
container_name: backend
build: ./backend
network:
- proxynet
ports:
- "7001:7001"
volumes:
- ./backend:/bikelane-backend
restart: unless-stopped
networks:
proxynet:
external: true