robosats/web/docker-compose.yml
2023-04-01 12:00:00 +00:00

22 lines
502 B
YAML

version: '3.9'
# Frontend and node client development orchestration
name: robosats-web-frontend
services:
frontend:
build: ../frontend
container_name: web-dev-frontend
volumes:
- ../frontend:/usr/src/frontend
- ./:/usr/src/web
nginx:
build: .
container_name: web-dev-nginx
restart: always
volumes:
- ./:/usr/src/web
- ../frontend/static/frontend:/usr/src/web/static/frontend
- ./nginx.conf:/etc/nginx/nginx.conf
ports:
- 8080:80