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