Skip to content

Commit 899748a

Browse files
committed
Use the new ghcr.io/commit-boost/commit-boost repo
1 parent b3b548e commit 899748a

3 files changed

Lines changed: 13 additions & 6 deletions

File tree

commit-boost-pbs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ x-logging: &logging
99
services:
1010
cb-pbs:
1111
restart: "unless-stopped"
12-
image: ${CB_PBS_DOCKER_REPO:-ghcr.io/commit-boost/pbs}:${CB_PBS_DOCKER_TAG:-latest}
12+
image: ${CB_DOCKER_REPO:-ghcr.io/commit-boost/commit-boost}:${CB_DOCKER_TAG:-latest}
1313
environment:
1414
CB_CONFIG: /cb-config.toml
1515
volumes:
@@ -19,6 +19,9 @@ services:
1919
aliases:
2020
# This allows multiple Eth Docker stacks all connected to the same bridge network
2121
- ${MEV_ALIAS:-default-mev}
22+
entrypoint:
23+
- commit-boost
24+
- pbs
2225
labels:
2326
- metrics.scrape=true
2427
- metrics.path=/metrics

default.env

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,8 @@ CONTRIBUTOOR_DOCKER_TAG=latest
362362
CONTRIBUTOOR_DOCKER_REPO=ethpandaops/contributoor
363363

364364
# Commit-Boost
365-
CB_PBS_DOCKER_TAG=latest
366-
CB_PBS_DOCKER_REPO=ghcr.io/commit-boost/pbs
365+
CB_DOCKER_TAG=latest
366+
CB_DOCKER_REPO=ghcr.io/commit-boost/commit-boost
367367
# MEV-Boost
368368
# SRC build target can be a tag, a branch, or a pr as "pr-ID"
369369
MEV_SRC_BUILD_TARGET=stable
@@ -579,4 +579,4 @@ DOCKER_SOCK=/var/run/docker.sock
579579
ALLOY_PROJECT_NAME=
580580

581581
# Used by ethd update - please do not adjust
582-
ENV_VERSION=63
582+
ENV_VERSION=64

ethd

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2023,8 +2023,8 @@ __update_value_in_env() {
20232023

20242024

20252025
__migrate_env() {
2026-
local old_vars=( DDNS_PROXY DDNS_SUBDOMAIN ERA_URL RPC_URL )
2027-
local new_vars=( CF_PROXY DDNS_HOST ERE_URL RPC_URLS )
2026+
local old_vars=( DDNS_PROXY DDNS_SUBDOMAIN ERA_URL RPC_URL CB_PBS_DOCKER_TAG CB_PBS_DOCKER_REPO )
2027+
local new_vars=( CF_PROXY DDNS_HOST ERE_URL RPC_URLS CB_DOCKER_TAG CB_DOCKER_REPO )
20282028
local error
20292029
local line
20302030
local index
@@ -2180,6 +2180,10 @@ __migrate_env() {
21802180
for index in "${!old_vars[@]}"; do
21812181
var=${old_vars[index]}
21822182
__get_value_from_env "${var}" "${__env_file}.source" "__value"
2183+
# Remove after Glamsterdam
2184+
if [[ "${__source_ver}" -lt "64" && "${var}" = "CB_PBS_DOCKER_REPO" && ${__value} = "ghcr.io/commit-boost/pbs" ]]; then
2185+
__value="ghcr.io/commit-boost/commit-boost"
2186+
fi
21832187
if [[ "${__found}" -eq 1 ]]; then
21842188
__update_value_in_env "${new_vars[index]}" "${__value}" "${__env_file}"
21852189
fi

0 commit comments

Comments
 (0)