-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
63 lines (62 loc) · 2.04 KB
/
docker-compose.yml
File metadata and controls
63 lines (62 loc) · 2.04 KB
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
56
57
58
59
60
61
62
63
name: hyperbeam-docker
services:
hyperbeam-edge:
build:
context: .
dockerfile: ./genesis_wasm.Dockerfile
target: build
# image: memetic-block/hyperbeam-docker:edge
command: rebar3 as genesis_wasm shell
ports:
- 8734:8734
volumes:
- hyperbeam-edge:/app/cache-mainnet
- ./config.flat:/app/config.flat:ro
- ${WALLET_FILE}:/app/wallet.json:ro
hyperbeam-edge-ephemeral:
build:
context: .
dockerfile: ./genesis_wasm.Dockerfile
target: build
# image: memetic-block/hyperbeam-docker:edge
env_file: .env
command: rebar3 as genesis_wasm shell
ports:
- 8734:8734
volumes:
- ./config.flat:/app/config.flat:ro
- ${WALLET_FILE}:/app/wallet.json:ro
hyperbeam-edge-release:
build:
context: .
dockerfile: ./genesis_wasm.Dockerfile
# image: memetic-block/hyperbeam-docker:edge-release
ports:
- 8734:8734
# environment:
# - HB_CONFIG=/app/_build/genesis_wasm/rel/hb/config.json
# - HB_KEY=/app/_build/genesis_wasm/rel/hb/wallet.json
volumes:
- hyperbeam-edge-release:/app/cache-mainnet # NB: container dir is probably wrong for release
# - ./config-release.json:/app/_build/genesis_wasm/rel/hb/config.json:ro
- ./config.release.flat:/app/_build/genesis_wasm/rel/hb/config.flat:ro
- ${WALLET_FILE}:/app/_build/genesis_wasm/rel/hb/wallet.json:ro
hyperbeam-edge-release-ephemeral:
build:
context: .
dockerfile: ./genesis_wasm.Dockerfile
# image: memetic-block/hyperbeam-docker:edge-release
ports:
- 8734:8734
# environment:
# - HB_CONFIG=/app/_build/genesis_wasm/rel/hb/config.json
# - HB_KEY=/app/_build/genesis_wasm/rel/hb/wallet.json
volumes:
# - ./config-release.json:/app/_build/genesis_wasm/rel/hb/config.json:ro
- ./config.release.flat:/app/_build/genesis_wasm/rel/hb/config.flat:ro
- ${WALLET_FILE}:/app/_build/genesis_wasm/rel/hb/wallet.json:ro
volumes:
hyperbeam-edge:
driver: local
hyperbeam-edge-release:
driver: local