Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support latest master docker images #2

Merged
merged 3 commits into from
Nov 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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