diff --git a/app/data/compose/docker-compose-mainnet-eth-ipld-eth-db.yml b/app/data/compose/docker-compose-mainnet-eth-ipld-eth-db.yml index fd5ff92b..49cc2de3 100644 --- a/app/data/compose/docker-compose-mainnet-eth-ipld-eth-db.yml +++ b/app/data/compose/docker-compose-mainnet-eth-ipld-eth-db.yml @@ -26,4 +26,4 @@ services: ports: - "5432" volumes: - mainnet_eth_ipld_eth_db: \ No newline at end of file + mainnet_eth_ipld_eth_db: diff --git a/app/data/compose/docker-compose-mainnet-eth-ipld-eth-server.yml b/app/data/compose/docker-compose-mainnet-eth-ipld-eth-server.yml index 6612a9f5..4341c6a1 100644 --- a/app/data/compose/docker-compose-mainnet-eth-ipld-eth-server.yml +++ b/app/data/compose/docker-compose-mainnet-eth-ipld-eth-server.yml @@ -15,7 +15,7 @@ services: - "8081" - "8082" - "8090" - - "40000" + - "40001" healthcheck: test: ["CMD", "nc", "-v", "localhost", "8081"] interval: 20s diff --git a/app/data/config/mainnet-eth-plugeth/geth.env b/app/data/config/mainnet-eth-plugeth/geth.env index 7d26029a..986fb470 100644 --- a/app/data/config/mainnet-eth-plugeth/geth.env +++ b/app/data/config/mainnet-eth-plugeth/geth.env @@ -6,7 +6,7 @@ CERC_SCRIPT_DEBUG=false # Simple toggle to choose either a 'full' node or an 'archive' node # (controls the values of --syncmode --gcmode --snapshot) -CERC_GETH_MODE_QUICK_SET=full +CERC_GETH_MODE_QUICK_SET=archive # Path to plugeth plugins. CERC_PLUGINS_DIR="/usr/local/lib/plugeth" diff --git a/app/data/stacks/mainnet-eth-plugeth/README.md b/app/data/stacks/mainnet-eth-plugeth/README.md index e159bfcf..8ed6bebb 100644 --- a/app/data/stacks/mainnet-eth-plugeth/README.md +++ b/app/data/stacks/mainnet-eth-plugeth/README.md @@ -18,7 +18,7 @@ $ laconic-so --stack mainnet-eth-plugeth build-containers ``` $ laconic-so --stack mainnet-eth-plugeth deploy init --map-ports-to-host any-same --output mainnet-eth-plugeth-spec.yml -$ laconic-so deploy create --spec-file mainnet-eth-plugeth-spec.yml --deployment-dir mainnet-eth-plugeth-deployment +$ laconic-so --stack mainnet-eth-plugeth deploy create --spec-file mainnet-eth-plugeth-spec.yml --deployment-dir mainnet-eth-plugeth-deployment ``` ## Start the stack ``` diff --git a/app/data/stacks/mainnet-eth-plugeth/deploy/commands.py b/app/data/stacks/mainnet-eth-plugeth/deploy/commands.py index 9fcecbcf..5aba9547 100644 --- a/app/data/stacks/mainnet-eth-plugeth/deploy/commands.py +++ b/app/data/stacks/mainnet-eth-plugeth/deploy/commands.py @@ -27,6 +27,6 @@ def setup(ctx): def create(ctx, extra_args): # Generate the JWT secret and save to its config file secret = token_hex(32) - jwt_file_path = ctx.deployment_dir.joinpath("data", "mainnet_eth_config_data", "jwtsecret") + jwt_file_path = ctx.deployment_dir.joinpath("data", "mainnet_eth_plugeth_config_data", "jwtsecret") with open(jwt_file_path, 'w+') as jwt_file: jwt_file.write(secret)