mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 11:26:24 +00:00
21 lines
454 B
YAML
21 lines
454 B
YAML
|
version: '3.9'
|
||
|
# Frontend and node client development orchestration
|
||
|
name: robosats-web-frontend
|
||
|
services:
|
||
|
frontend:
|
||
|
build: ../frontend
|
||
|
container_name: web-dev-frontend
|
||
|
restart: always
|
||
|
command: npm run dev
|
||
|
|
||
|
nginx:
|
||
|
build: .
|
||
|
container_name: web-dev-nginx
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- ./:/usr/src/robosats/
|
||
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
||
|
- ./coordinators/:/etc/nginx/conf.d/
|
||
|
ports:
|
||
|
- 80:80
|