Skip to content
Draft
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
5 changes: 4 additions & 1 deletion commit-boost-pbs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ x-logging: &logging
services:
cb-pbs:
restart: "unless-stopped"
image: ${CB_PBS_DOCKER_REPO:-ghcr.io/commit-boost/pbs}:${CB_PBS_DOCKER_TAG:-latest}
image: ${CB_DOCKER_REPO:-ghcr.io/commit-boost/commit-boost}:${CB_DOCKER_TAG:-latest}
environment:
CB_CONFIG: /cb-config.toml
volumes:
Expand All @@ -19,6 +19,9 @@ services:
aliases:
# This allows multiple Eth Docker stacks all connected to the same bridge network
- ${MEV_ALIAS:-default-mev}
entrypoint:
- commit-boost
- pbs
labels:
- metrics.scrape=true
- metrics.path=/metrics
Expand Down
6 changes: 3 additions & 3 deletions default.env
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,8 @@ CONTRIBUTOOR_DOCKER_TAG=latest
CONTRIBUTOOR_DOCKER_REPO=ethpandaops/contributoor

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

# Used by ethd update - please do not adjust
ENV_VERSION=63
ENV_VERSION=64
8 changes: 6 additions & 2 deletions ethd
Original file line number Diff line number Diff line change
Expand Up @@ -2023,8 +2023,8 @@ __update_value_in_env() {


__migrate_env() {
local old_vars=( DDNS_PROXY DDNS_SUBDOMAIN ERA_URL RPC_URL )
local new_vars=( CF_PROXY DDNS_HOST ERE_URL RPC_URLS )
local old_vars=( DDNS_PROXY DDNS_SUBDOMAIN ERA_URL RPC_URL CB_PBS_DOCKER_TAG CB_PBS_DOCKER_REPO )
local new_vars=( CF_PROXY DDNS_HOST ERE_URL RPC_URLS CB_DOCKER_TAG CB_DOCKER_REPO )
local error
local line
local index
Expand Down Expand Up @@ -2180,6 +2180,10 @@ __migrate_env() {
for index in "${!old_vars[@]}"; do
var=${old_vars[index]}
__get_value_from_env "${var}" "${__env_file}.source" "__value"
# Remove after Glamsterdam
if [[ "${__source_ver}" -lt "64" && "${var}" = "CB_PBS_DOCKER_REPO" && ${__value} = "ghcr.io/commit-boost/pbs" ]]; then
__value="ghcr.io/commit-boost/commit-boost"
fi
if [[ "${__found}" -eq 1 ]]; then
__update_value_in_env "${new_vars[index]}" "${__value}" "${__env_file}"
fi
Expand Down
Loading