robosats/nodeapp/docker-compose.yml

39 lines
952 B
YAML
Raw Normal View History

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