Skip to content

Commit

Permalink
docker volumes: use more specific volume names (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-zaremba authored and dincho committed Nov 14, 2019
1 parent d304f2a commit 10451b8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
volumes:
- ${PWD}/node/config/node1_mean15.yaml:/home/aeternity/aeternity.yaml
- ${PWD}/node/keys/node1:/home/aeternity/node/keys
- node1_db:/home/aeternity/node/data/mnesia
- ae_node1_db:/home/aeternity/node/data/mnesia

node2:
image: aeternity/aeternity:${IMAGE_TAG-latest}
Expand All @@ -23,7 +23,7 @@ services:
volumes:
- ${PWD}/node/config/node2_mean15.yaml:/home/aeternity/aeternity.yaml
- ${PWD}/node/keys/node2:/home/aeternity/node/keys
- node2_db:/home/aeternity/node/data/mnesia
- ae_node2_db:/home/aeternity/node/data/mnesia

node3:
image: aeternity/aeternity:${IMAGE_TAG-latest}
Expand All @@ -35,7 +35,7 @@ services:
volumes:
- ${PWD}/node/config/node3_mean15.yaml:/home/aeternity/aeternity.yaml
- ${PWD}/node/keys/node3:/home/aeternity/node/keys
- node3_db:/home/aeternity/node/data/mnesia
- ae_node3_db:/home/aeternity/node/data/mnesia

proxy:
image: nginx:1.13.8
Expand All @@ -50,6 +50,6 @@ services:
- ${PWD}/nginx/ws.conf:/etc/nginx/ws.conf

volumes:
node1_db:
node2_db:
node3_db:
ae_node1_db:
ae_node2_db:
ae_node3_db:

0 comments on commit 10451b8

Please sign in to comment.