Skip to content

Commit

Permalink
Support latest master docker images (#2)
Browse files Browse the repository at this point in the history
* Support latest master docker images
* Update single node configuration
* Mention node version support in readme
  • Loading branch information
dincho authored Nov 18, 2019
1 parent 10451b8 commit 28bcf73
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Aeternity Localnet

Docker-compose based configuration to easily run locally deployed dev/test network.
Latest config files support node v5.*. For older node versions use the 1.* tags of this repository.

This repository provide two setups described below:

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
environment:
AETERNITY_CONFIG: /home/aeternity/aeternity.yaml
command: >
-aecore expected_mine_rate ${AETERNITY_MINE_RATE:-15000}
bin/aeternity console -noinput -aecore expected_mine_rate ${AETERNITY_MINE_RATE:-15000}
volumes:
- ${PWD}/node/config/node1_mean15.yaml:/home/aeternity/aeternity.yaml
- ${PWD}/node/keys/node1:/home/aeternity/node/keys
Expand All @@ -19,7 +19,7 @@ services:
environment:
AETERNITY_CONFIG: /home/aeternity/aeternity.yaml
command: >
-aecore expected_mine_rate ${AETERNITY_MINE_RATE:-15000}
bin/aeternity console -noinput -aecore expected_mine_rate ${AETERNITY_MINE_RATE:-15000}
volumes:
- ${PWD}/node/config/node2_mean15.yaml:/home/aeternity/aeternity.yaml
- ${PWD}/node/keys/node2:/home/aeternity/node/keys
Expand All @@ -31,7 +31,7 @@ services:
environment:
AETERNITY_CONFIG: /home/aeternity/aeternity.yaml
command: >
-aecore expected_mine_rate ${AETERNITY_MINE_RATE:-15000}
bin/aeternity console -noinput -aecore expected_mine_rate ${AETERNITY_MINE_RATE:-15000}
volumes:
- ${PWD}/node/config/node3_mean15.yaml:/home/aeternity/aeternity.yaml
- ${PWD}/node/keys/node3:/home/aeternity/node/keys
Expand Down
2 changes: 1 addition & 1 deletion singlenode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
environment:
AETERNITY_CONFIG: /home/aeternity/aeternity.yaml
command: >
-aecore expected_mine_rate ${AETERNITY_MINE_RATE:-15000}
bin/aeternity console -noinput -aecore expected_mine_rate ${AETERNITY_MINE_RATE:-15000}
volumes:
- ${PWD}/node/config/singlenode_mean15.yaml:/home/aeternity/aeternity.yaml
- ${PWD}/node/keys/node1:/home/aeternity/node/keys
Expand Down

0 comments on commit 28bcf73

Please sign in to comment.