Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zjg555543 committed Oct 12, 2023
1 parent 5fbf989 commit aa42487
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/running_local.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ The current version of the environment requires `go`, `docker` and `docker-compo
- <https://www.docker.com/get-started>
- <https://docs.docker.com/compose/install/>

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
Expand Down

0 comments on commit aa42487

Please sign in to comment.