forked from RoboSats/robosats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
21 lines (20 loc) · 480 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
21 lines (20 loc) · 480 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
- ./nginx.conf:/etc/nginx/nginx.conf
- ./coordinators/:/etc/nginx/conf.d/
ports:
- 8080:80