Files
weather-app/docker-compose.yml
2025-11-29 17:28:47 +01:00

25 lines
419 B
YAML

services:
frontend:
container_name: weather-frontend
build: ./frontend
networks:
- proxynet
ports:
- "7002:80"
restart: unless-stopped
backend:
container_name: weather-backend
build: ./backend
networks:
- proxynet
ports:
- "7001:7001"
volumes:
- ./backend:/bikelane-backend
restart: unless-stopped
networks:
proxynet:
external: true