-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yml
31 lines (31 loc) · 1.04 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
version: '3.4'
services:
0l:
build:
context: .
dockerfile: local.Dockerfile
command: yarn nodemon --watch routers/ --watch lib/**/*.js --watch index.js index.js
environment:
- PORT=3027
- NEXT_TELEMETRY_DISABLED=1
- NODE_ENV=development
- NODE_HOSTNAME=35.231.138.89 #needs to be genesis synced
- WEB_MONITOR_HOSTNAME=35.231.138.89
- PERMISSION_TREE_API_PRIVATE_URL=https://0l.interblockcha.in:444
- PERMISSION_TREE_API_PUBLIC_URL=https://0l.interblockcha.in:444
- GA_MEASUREMENT_ID=G-Z8SZTHYB62
- VALIDATOR_DIEM_PROMETHEUS_HOST=192.168.1.3,192.168.1.11
ports:
- "3027:3027"
volumes:
- ./components:/code/components
- ./lib:/code/lib
- ./styles:/code/styles
- ./pages:/code/pages
- ./public:/code/public
- ./routers:/code/routers
- ./index.js:/code/index.js
- ./next-env.d.ts:/code/next-env.d.ts
- ./tsconfig.json:/code/tsconfig.json
- ./next.config.js:/code/next.config.js
- ./package.json:/code/package.json