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

chore(docker): new sidecar tag #153

Merged
merged 4 commits into from
Jul 22, 2024
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
46 changes: 23 additions & 23 deletions testnets/helder/docker-compose.pbs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
image: postgres
restart: unless-stopped
volumes:
- 'psql_data:/var/lib/postgresql/data'
- "psql_data:/var/lib/postgresql/data"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand All @@ -25,43 +25,43 @@ services:
depends_on:
- db
ports:
- '8093:8080'
- "8093:8080"
environment:
ADMINER_PLUGINS: tables-filter tinymce

builder:
image: ghcr.io/chainbound/bolt-builder:v0.1.0
image: ghcr.io/chainbound/bolt-builder:0.1.2-alpha
restart: unless-stopped
volumes:
- 'chaindata:/var/lib/chaindata'
- './shared:/var/lib/shared'
- './network-configs:/var/lib/network-configs'
- './scripts/run-builder.sh:/scripts/run-builder.sh'
- "chaindata:/var/lib/chaindata"
- "./shared:/var/lib/shared"
- "./network-configs:/var/lib/network-configs"
- "./scripts/run-builder.sh:/scripts/run-builder.sh"
environment:
BUILDER_TX_SIGNING_KEY: "0x53321db7c1e331d93a11a41d16f004d7ff63972ec8ec7c25db329728ceeb1710"
ports:
# - '8545:8545'
# - '8546:8546'
- '30310:30303/tcp'
- '30310:30303/udp'
- "30310:30303/tcp"
- "30310:30303/udp"
# entrypoint is builder
entrypoint: /scripts/run-builder.sh

beacon:
image: sigp/lighthouse:latest
restart: unless-stopped
volumes:
- 'chaindata:/var/lib/chaindata'
- './shared:/var/lib/shared'
- './network-configs:/var/lib/network-configs'
- './scripts/run-bn.sh:/scripts/run-bn.sh'
- "chaindata:/var/lib/chaindata"
- "./shared:/var/lib/shared"
- "./network-configs:/var/lib/network-configs"
- "./scripts/run-bn.sh:/scripts/run-bn.sh"
ports:
- '50050:50050/tcp'
- '50050:50050/udp'
- "50050:50050/tcp"
- "50050:50050/udp"
entrypoint: /scripts/run-bn.sh

relay-housekeeper:
image: ghcr.io/chainbound/bolt-relay:v0.1.0
image: ghcr.io/chainbound/bolt-relay:0.1.2-alpha
restart: unless-stopped
depends_on:
db:
Expand All @@ -84,11 +84,11 @@ services:
"--redis-uri",
"redis:6379",
"--beacon-uris",
"http://beacon:4000"
"http://beacon:4000",
]

relay-api:
image: ghcr.io/chainbound/bolt-relay:v0.1.0
image: ghcr.io/chainbound/bolt-relay:0.1.2-alpha
restart: unless-stopped
depends_on:
relay-housekeeper:
Expand All @@ -100,7 +100,7 @@ services:
CAPELLA_FORK_VERSION: "0x40000000"
DENEB_FORK_VERSION: "0x50132736"
ports:
- '9062:9062'
- "9062:9062"
command:
[
"api",
Expand All @@ -117,11 +117,11 @@ services:
"--secret-key",
"0x607a11b45a7219cc61a3d9c5fd08c7eebd602a6a19a977f8d3771d5711a550f2",
"--listen-addr",
"0.0.0.0:9062"
"0.0.0.0:9062",
]

relay-website:
image: ghcr.io/chainbound/bolt-relay:v0.1.0
image: ghcr.io/chainbound/bolt-relay:0.1.2-alpha
restart: always
depends_on:
relay-api:
Expand All @@ -133,7 +133,7 @@ services:
CAPELLA_FORK_VERSION: "0x40000000"
DENEB_FORK_VERSION: "0x50132736"
ports:
- '9060:9060'
- "9060:9060"
command:
[
"website",
Expand All @@ -144,5 +144,5 @@ services:
"--redis-uri",
"redis:6379",
"--listen-addr",
"0.0.0.0:9060"
"0.0.0.0:9060",
]
4 changes: 2 additions & 2 deletions testnets/helder/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
bolt-sidecar:
image: ghcr.io/chainbound/bolt-sidecar:v0.1.1-alpha.2
image: ghcr.io/chainbound/bolt-sidecar:0.1.2-alpha
container_name: bolt-sidecar
restart: unless-stopped
ports:
Expand All @@ -10,7 +10,7 @@ services:
entrypoint: /bin/sh -c '/bolt-sidecar --port $$BOLT_RPC_PORT --chain helder --validator-indexes $$VALIDATOR_INDEXES --beacon-api-url $$BEACON_API_URL --execution-api-url $$EXECUTION_API_URL --engine-api-url $$ENGINE_API_URL --private-key $$SIGNING_KEY --mevboost-url http://bolt-boost:18550 --mevboost-proxy-port 18551 --jwt-hex $$JWT_HEX --fee-recipient $$FEE_RECIPIENT'

bolt-boost:
image: ghcr.io/chainbound/bolt-boost:v0.1.1-alpha
image: ghcr.io/chainbound/bolt-mev-boost:0.1.2-alpha
container_name: bolt-boost
restart: unless-stopped
env_file: ./launch.env
Expand Down
Loading