-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
55 lines (50 loc) · 1017 Bytes
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
version: "3"
x-app: &app
build:
context: .
dockerfile: ./docker/Dockerfile.dev
image: avely-dev:0.0.22
x-dapp: &dapp
<<: *app
stdin_open: true
tty: true
volumes: &volumes
- ./:/dapp:cached
- ${SSH_AUTH_SOCK}:${SSH_AUTH_SOCK}
- ~/.ssh:/root/.ssh
- ~/.bash_history:/root/.bash_history
environment: &environment
EDITOR: vi
security_opt:
- seccomp:unconfined
cap_add:
- SYS_PTRACE
depends_on:
- zilliqa_server
networks:
default:
services:
runner:
<<: *dapp
command: /bin/bash
entrypoint: ""
ports: []
zilliqa_server:
image: zilliqa/zilliqa-isolated-server:latest
#volumes:
# - zilliqa_server:/zilliqa/persistence
environment:
MANUAL_MODE: "true"
# MODE: "load"
ports:
- '5555:5555'
devex:
image: zilliqa/devex
ports:
- '5557:80'
volumes:
- ./devex/networks.json:/usr/share/nginx/html/networks.json
depends_on:
- zilliqa_server
volumes:
zilliqa_server: