27 lines
560 B
YAML
27 lines
560 B
YAML
services:
|
|
# frontend:
|
|
# container_name: weather-frontend
|
|
# build: ./frontend
|
|
# ports:
|
|
# - "7002:7002"
|
|
# # networks:
|
|
# # - proxynet
|
|
# environment:
|
|
# - CHOKIDAR_USEPOLLING=true
|
|
# volumes:
|
|
# - ./frontend:/app
|
|
# - /app/node_modules
|
|
# restart: unless-stopped
|
|
backend:
|
|
container_name: weather-backend
|
|
build: ./backend
|
|
ports:
|
|
- "7001:7001"
|
|
volumes:
|
|
- ./backend:/app
|
|
- /app/node_modules
|
|
restart: unless-stopped
|
|
#networks:
|
|
# proxynet:
|
|
# external: true
|