2022-09-13 13:34:33 +00:00
|
|
|
version: '3.9'
|
2023-05-12 11:04:41 +00:00
|
|
|
# Frontend and node client development orchestration
|
2023-10-12 12:57:51 +00:00
|
|
|
name: robosats-frontend
|
2022-09-13 13:34:33 +00:00
|
|
|
services:
|
2023-05-12 11:04:41 +00:00
|
|
|
frontend:
|
|
|
|
build: ../frontend
|
2023-10-12 12:57:51 +00:00
|
|
|
container_name: npm-dev-frontend
|
2023-05-12 11:04:41 +00:00
|
|
|
restart: always
|
|
|
|
command: npm run dev
|
|
|
|
volumes:
|
|
|
|
- ../frontend:/usr/src/frontend
|
|
|
|
- ../mobile:/usr/src/mobile
|
|
|
|
|
|
|
|
nodeapp:
|
|
|
|
build: .
|
2023-10-12 12:57:51 +00:00
|
|
|
container_name: nodeapp-dev-frontend
|
2022-09-13 13:34:33 +00:00
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
TOR_PROXY_IP: 127.0.0.1
|
|
|
|
TOR_PROXY_PORT: 9050
|
|
|
|
network_mode: service:tor
|
2023-05-12 11:04:41 +00:00
|
|
|
volumes:
|
|
|
|
- ./:/usr/src/robosats/
|
|
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
|
|
- ../frontend/static:/usr/src/robosats/static
|
|
|
|
|
2022-09-13 13:34:33 +00:00
|
|
|
tor:
|
|
|
|
build: ../docker/tor
|
2023-10-12 12:57:51 +00:00
|
|
|
container_name: tor-dev-frontend
|
2022-09-13 13:34:33 +00:00
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
LOCAL_USER_ID: 1000
|
|
|
|
LOCAL_GROUP_ID: 1000
|
2023-05-12 11:04:41 +00:00
|
|
|
volumes:
|
|
|
|
- ../node/tor/data:/var/lib/tor
|
|
|
|
- ../node/tor/config:/etc/tor
|
2022-09-13 13:34:33 +00:00
|
|
|
ports:
|
|
|
|
- 12596:12596
|