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

just add the domain node block with the consensus block in docker compose #1259

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
15 changes: 15 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@ NODE_DOCKER_TAG=mainnet-2025-jan-14

# Auto EVM Domain ID
DOMAIN_ID=0
#mainnet
NODE_EXTRA_ARGS=""
#taurus
# NODE_EXTRA_ARGS="-- \
# --domain-id ${DOMAIN_ID} \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The DOMAIN_ID env is likely not needed anymore, and could be hardcoded here.

# --state-pruning archive \
# --blocks-pruning archive \
# --listen-on /ip4/0.0.0.0/tcp/30334 \
# --rpc-cors all \
# --rpc-methods safe \
# --rpc-listen-on 0.0.0.0:8944 \
# --rpc-max-connections 500 \
# --reserved-peer /dns/bootstrap-0.auto-evm.taurus.subspace.network/tcp/30334/p2p/12D3KooWKDhSnpoeyRPRQSNwnB2k1C4WRa8h3BQh5s5mtF9MJdTN \
# --bootstrap-node /dns/bootstrap-0.auto-evm.taurus.subspace.network/tcp/30334/p2p/12D3KooWKDhSnpoeyRPRQSNwnB2k1C4WRa8h3BQh5s5mtF9MJdTN"


DB_USER=postgres
DB_DATABASE=postgres
Expand Down
80 changes: 0 additions & 80 deletions docker-compose.domains.yml

This file was deleted.

4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ services:
image: caddy:latest
ports:
- "127.0.0.1:8000:8000"
- "127.0.0.1:8001:8001"
volumes:
- ./indexers/Caddyfile:/etc/caddy/Caddyfile # Mount the Caddyfile
- caddy_data:/data # Volume for Let's Encrypt certificates
Expand All @@ -32,7 +33,9 @@ services:
ports:
- "30333:30333/tcp"
- "30433:30433/tcp"
- "30334:30334/tcp"
- "127.0.0.1:9944:9944/tcp"
- "127.0.0.1:8944:8944/tcp"
restart: unless-stopped
command:
[
Expand Down Expand Up @@ -63,6 +66,7 @@ services:
"astral",
"--sync",
"full",
"${NODE_EXTRA_ARGS}"
]
healthcheck:
timeout: 5s
Expand Down
Loading