-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (31 loc) · 940 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (31 loc) · 940 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
28
29
30
31
32
33
34
version: "2"
services:
nodeosd:
build:
context: .
image: eosio/eos-dev
command: /opt/eosio/bin/nodeosd.sh --access-control-allow-origin=* --http-validate-host=false --http-alias=nodeosd:8888 --http-alias=127.0.0.1:8888 --http-alias=localhost:8888 --http-alias=0.0.0.0:8888 --delete-all-blocks --contracts-console --data-dir /opt/eosio/bin/data-dir -e
hostname: nodeosd
restart: always
ports:
- 8888:8888
- 9876:9876
expose:
- "8888"
volumes:
- nodeos-data-volume:/opt/eosio/bin/data-dir
- ./:/eosdev
keosd:
image: eosio/eos-dev:v1.0.4
command: /opt/eosio/bin/keosd --wallet-dir /opt/eosio/bin/data-dir --http-server-address=0.0.0.0:8900
hostname: keosd
restart: always
links:
- nodeosd
volumes:
- keosd-data-volume:/opt/eosio/bin/data-dir
volumes:
nodeos-data-volume:
external: true
keosd-data-volume:
external: true