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 @@ -357,8 +357,8 @@ CONTRIBUTOOR_DOCKER_TAG=latest
357357CONTRIBUTOOR_DOCKER_REPO = ethpandaops/contributoor
358358
359359# Commit-Boost
360- CB_PBS_DOCKER_TAG = latest
361- CB_PBS_DOCKER_REPO = ghcr.io/commit-boost/pbs
360+ CB_DOCKER_TAG = latest
361+ CB_DOCKER_REPO = ghcr.io/commit-boost/commit-boost
362362# MEV-Boost
363363# SRC build target can be a tag, a branch, or a pr as "pr-ID"
364364MEV_SRC_BUILD_TARGET = stable
@@ -572,4 +572,4 @@ DOCKER_SOCK=/var/run/docker.sock
572572ALLOY_PROJECT_NAME =
573573
574574# Used by ethd update - please do not adjust
575- ENV_VERSION = 62
575+ ENV_VERSION = 64
Original file line number Diff line number Diff line change @@ -1924,8 +1924,8 @@ __update_value_in_env() {
19241924
19251925
19261926__migrate_env () {
1927- local old_vars=( DDNS_PROXY DDNS_SUBDOMAIN ERA_URL RPC_URL )
1928- local new_vars=( CF_PROXY DDNS_HOST ERE_URL RPC_URLS )
1927+ local old_vars=( DDNS_PROXY DDNS_SUBDOMAIN ERA_URL RPC_URL CB_PBS_DOCKER_TAG CB_PBS_DOCKER_REPO )
1928+ local new_vars=( CF_PROXY DDNS_HOST ERE_URL RPC_URLS CB_DOCKER_TAG CB_DOCKER_REPO )
19291929 local error
19301930 local line
19311931 local index
@@ -2081,6 +2081,10 @@ __migrate_env() {
20812081 for index in " ${! old_vars[@]} " ; do
20822082 var=${old_vars[index]}
20832083 __get_value_from_env " ${var} " " ${__env_file} .source" " __value"
2084+ # Remove after Glamsterdam
2085+ if [[ " ${__source_ver} " -lt " 64" && " ${var} " = " CB_PBS_DOCKER_REPO" && ${__value} = " ghcr.io/commit-boost/pbs" ]]; then
2086+ __value=" ghcr.io/commit-boost/commit-boost"
2087+ fi
20842088 if [[ " ${__found} " -eq 1 ]]; then
20852089 __update_value_in_env " ${new_vars[index]} " " ${__value} " " ${__env_file} "
20862090 fi
You can’t perform that action at this time.
0 commit comments