mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
293c0b604d
* Add SVG icons for map pins * Add federation basis and new coordinator form (#793) * Add new coordinator entry issue form * Add Federation basis * Fix eslint errors from F2F and fix languages * Redo eslint @typescript-eslint/strict-boolean-expressions * Robot Page working * Contexts Working * Garage Working * CurrentOrder working * Federation model working --------- Co-authored-by: Reckless_Satoshi <reckless.satoshi@protonmail.com> Co-authored-by: Reckless_Satoshi <90936742+Reckless-Satoshi@users.noreply.github.com>
39 lines
952 B
YAML
39 lines
952 B
YAML
version: '3.9'
|
|
# Frontend and node client development orchestration
|
|
name: robosats-frontend
|
|
services:
|
|
frontend:
|
|
build: ../frontend
|
|
container_name: npm-dev-frontend
|
|
restart: always
|
|
command: npm run dev
|
|
volumes:
|
|
- ../frontend:/usr/src/frontend
|
|
- ../mobile:/usr/src/mobile
|
|
|
|
nodeapp:
|
|
build: .
|
|
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
|
|
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 |