-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
27 lines (25 loc) · 800 Bytes
/
docker-compose.yml
File metadata and controls
27 lines (25 loc) · 800 Bytes
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
version: '3'
services:
node:
image: kryptokrauts/aeternity:${AETERNITY_TAG}
ports:
- "3113:3113" # node internal api
- "3013:3013" # node external api
- "3014:3014" # node websocket
- "4000:4000" # mdw default port
- "4001:4001" # mdw websocket default port
volumes:
- ${PWD}/docker/aeternity.yaml:/home/aeternity/node/local/rel/aeternity/aeternity.yaml
- ${PWD}/docker/accounts_test.json:/home/aeternity/node/local/rel/aeternity/data/aecore/.genesis/accounts_test.json
compiler:
image: aeternity/aesophia_http:${SOPHIA_COMPILER_TAG}
ports:
- "3080:3080"
proxy:
image: nginx:${NGINX_TAG}
ports:
- "80:80"
volumes:
- ${PWD}/docker/nginx.conf:/etc/nginx/conf.d/default.conf
depends_on:
- node