Skip to content

Commit

Permalink
add docker-compose-dawn3.0.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
noprom committed Apr 18, 2018
1 parent 8b2a21a commit cbc50d5
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Docker/docker-compose-dawn3.0.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
version: "3"

services:
nodeosd:
image: eosio/eos:dawn3x
command: /opt/eosio/bin/nodeosd.sh
hostname: nodeosd
ports:
- 8888:8888
- 9876:9876
expose:
- "8888"
volumes:
- nodeos-data-volume:/opt/eosio/bin/data-dir

keosd:
image: eosio/eos:dawn3x
command: /opt/eosio/bin/keosd
hostname: keosd
links:
- nodeosd
volumes:
- keosd-data-volume:/opt/eosio/bin/data-dir

volumes:
nodeos-data-volume:
external: true
keosd-data-volume:
external: true

0 comments on commit cbc50d5

Please sign in to comment.