Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rebranding #12

Merged
merged 1 commit into from
Oct 13, 2023
Merged
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
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
Loading