Skip to content

Commit

Permalink
[docker-compose] update fullnode doc
Browse files Browse the repository at this point in the history
  • Loading branch information
sherry-x authored and aptos-bot committed Mar 13, 2022
1 parent 91833ca commit 3a56545
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docker/compose/data-restore/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
version: "3.8"
services:
restore:
image: aptos/tools:devnet
image: aptoslab/tools:devnet
volumes:
- type: volume
source: db
Expand Down
14 changes: 7 additions & 7 deletions docker/compose/public_full_node/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
#
# In order to use, place a copy of the proper genesis.blob and waypoint.txt in this directory.
#
# Developer testnet genesis blob and waypoint can be found at:
# `curl https://devnet.aptoslabs.com/waypoint.txt --output waypoint.txt`
# `curl https://devnet.aptoslabs.com/genesis.blob --output genesis.blob`
#
# Note this compose comes with a pre-configured node.config for fullnodes, see
# public_full_node.yaml. The config is pretty well documented and aligns with instructions herein.
# It is intended for use with testnet but can be easily modified for other systems.
#
# TODO:
# * add url for genesis blob and waypoint
#
# TODO:
# * Directions on the correct image
# * Connecting to the local testnet
# To start the docker compose:
# `docker-compose -f docker-compose.yaml up -d`
#
# Additional information:
# * If you use this compose for different Aptos Networks, you will need remove the db volume first.
Expand All @@ -31,7 +31,7 @@
version: "3.8"
services:
fullnode:
image: aptos/validator:devnet
image: aptoslab/validator:devnet
volumes:
- type: volume
source: db
Expand Down
8 changes: 4 additions & 4 deletions docker/compose/validator-testnet/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
# * If you use this compose for different Aptos Networks, you will need remove the db volume first.
# * If you would like to use the current Aptos version within this repository, execute the
# `build.sh` in `docker/validator` and change the image tag below to aptos_e2e:latest
# * Validator images can be found at https://hub.docker.com/r/devnet/validator/tags
# * Faucet images can be found at https://hub.docker.com/r/devnet/faucet/tags
# * Validator images can be found at https://hub.docker.com/repository/docker/aptoslab/validator/tags
# * Faucet images can be found at https://hub.docker.com/repository/docker/aptoslab/faucet/tags

# Monitoring:
# If you want to install the monitoring components for your validator-testnet
Expand All @@ -26,7 +26,7 @@ services:
validator:
# Note this image currently does not support this, will update to the appropriate minimum
# version shortly
image: "aptos/validator:${IMAGE_TAG:-devnet}"
image: "aptoslab/validator:${IMAGE_TAG:-devnet}"
networks:
shared:
volumes:
Expand All @@ -43,7 +43,7 @@ services:
- 9101

faucet:
image: "aptos/faucet:${IMAGE_TAG:-devnet}"
image: "aptoslab/faucet:${IMAGE_TAG:-devnet}"
depends_on:
- validator
networks:
Expand Down

0 comments on commit 3a56545

Please sign in to comment.