From aa42487b42841c0388921f15d539bb34c5552f91 Mon Sep 17 00:00:00 2001 From: jianguo Date: Thu, 12 Oct 2023 17:41:21 +0800 Subject: [PATCH] update --- .github/workflows/push-docker.yml | 4 ++-- Makefile | 4 ++-- docker-compose.yml | 8 ++++---- docs/running_local.md | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/push-docker.yml b/.github/workflows/push-docker.yml index 4f3db275..575fce51 100644 --- a/.github/workflows/push-docker.yml +++ b/.github/workflows/push-docker.yml @@ -29,7 +29,7 @@ jobs: platforms: linux/amd64,linux/arm64 push: true tags: | - hermeznetwork/zkevm-bridge-service - hermeznetwork/zkevm-bridge-service:2.0 + okx/xagon-bridge-service + okx/xagon-bridge-service:2.0 build-args: | PRIVATE_TOKEN=${{secrets.GIT_TOKEN}} diff --git a/Makefile b/Makefile index 6b1cd907..fcd8cf21 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ DOCKER_COMPOSE_BRIDGE_DB := zkevm-bridge-db DOCKER_COMPOSE_ZKEVM_NODE := zkevm-node DOCKER_COMPOSE_L1_NETWORK := zkevm-mock-l1-network DOCKER_COMPOSE_ZKPROVER := zkevm-prover -DOCKER_COMPOSE_BRIDGE := zkevm-bridge-service +DOCKER_COMPOSE_BRIDGE := xagon-bridge-service RUN_STATE_DB := $(DOCKER_COMPOSE) up -d $(DOCKER_COMPOSE_STATE_DB) RUN_POOL_DB := $(DOCKER_COMPOSE) up -d $(DOCKER_COMPOSE_POOL_DB) @@ -66,7 +66,7 @@ install-linter: ## Installs the linter .PHONY: build-docker build-docker: ## Builds a docker image with the zkevm bridge binary - docker build -t zkevm-bridge-service -f ./Dockerfile . + docker build -t xagon-bridge-service -f ./Dockerfile . .PHONY: run-db-node run-db-node: ## Runs the node database diff --git a/docker-compose.yml b/docker-compose.yml index aa5d32f2..ce900dd9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -135,9 +135,9 @@ services: command: > zkProver -c /usr/src/app/config.json - zkevm-bridge-service: - container_name: zkevm-bridge-service - image: zkevm-bridge-service + xagon-bridge-service: + container_name: xagon-bridge-service + image: xagon-bridge-service ports: - 8080:8080 - 9090:9090 @@ -158,7 +158,7 @@ services: zkevm-bridge-kafka-consumer: container_name: zkevm-bridge-kafka-consumer - image: zkevm-bridge-service + image: xagon-bridge-service volumes: - ./config/config.local.toml:/app/config.toml - ./coinmiddleware/root-ca-cert:/app/root-ca-cert diff --git a/docs/running_local.md b/docs/running_local.md index 13682003..0786ceb3 100644 --- a/docs/running_local.md +++ b/docs/running_local.md @@ -21,8 +21,8 @@ The current version of the environment requires `go`, `docker` and `docker-compo - - -The `zkevm-bridge-service` docker image must be built at least once and every time a change is made to the code. -If you haven't build the `zkevm-bridge-service` image yet, you must run: +The `xagon-bridge-service` docker image must be built at least once and every time a change is made to the code. +If you haven't build the `xagon-bridge-service` image yet, you must run: ```bash make build-docker