File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ x-logging: &logging
99services :
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
Original file line number Diff line number Diff line change @@ -362,8 +362,8 @@ CONTRIBUTOOR_DOCKER_TAG=latest
362362CONTRIBUTOOR_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"
369369MEV_SRC_BUILD_TARGET = stable
@@ -579,4 +579,4 @@ DOCKER_SOCK=/var/run/docker.sock
579579ALLOY_PROJECT_NAME =
580580
581581# Used by ethd update - please do not adjust
582- ENV_VERSION = 63
582+ ENV_VERSION = 64
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments