forked from thepiwo/token-registry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
34 lines (32 loc) · 1.06 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
32
33
34
version: "3.6"
services:
aeproject_node:
image: aeternity/aeternity:${NODE_TAG:-v7.0.0}-bundle
hostname: node
# TODO: remove after releasing https://github.com/aeternity/aeternity/pull/4292
healthcheck:
interval: 2s
environment:
AETERNITY_CONFIG: /home/aeternity/aeternity.yaml
AE__SYSTEM__CUSTOM_PREFUNDED_ACCS_FILE: "/home/aeternity/node/data/aecore/.genesis/accounts_test.json"
volumes:
- "./docker/aeternity.yaml:/home/aeternity/aeternity.yaml"
- "./docker/accounts.json:/home/aeternity/node/data/aecore/.genesis/accounts_test.json"
aeproject_compiler:
image: aeternity/aesophia_http:${COMPILER_TAG:-v8.0.0}
hostname: compiler
# TODO: remove after releasing https://github.com/aeternity/aesophia_http/pull/133
healthcheck:
interval: 2s
ports:
- "3080:3080"
aeproject_proxy:
image: nginx:latest
hostname: proxy
ports:
- "3001:3001"
volumes:
- "./docker/nginx.conf:/etc/nginx/conf.d/default.conf"
depends_on:
- aeproject_compiler
- aeproject_node