Skip to content

Commit

Permalink
ci: Migrate compose to ghcr.io (#2527)
Browse files Browse the repository at this point in the history
## What ❔

Change compose image repo for zk-environment to ghcr.io

## Why ❔

Should prevent Dockerhub rate limiting

## Checklist

<!-- Check your PR fulfills the following items. -->
<!-- For draft PRs check the boxes as you complete them. -->

- [x] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [ ] Tests for the changes have been added / updated.
- [ ] Documentation comments have been added / updated.
- [ ] Code has been formatted via `zk fmt` and `zk lint`.
  • Loading branch information
artmakh authored Jul 29, 2024
1 parent 5acd686 commit 38f61c3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker-compose-cpu-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- 127.0.0.1:8545:8545

zk:
image: "matterlabs/zk-environment:latest2.0-lightweight-nightly"
image: "ghcr.io/matter-labs/zk-environment:latest2.0-lightweight-nightly"
depends_on:
- reth
- postgres
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-gpu-runner-cuda-12-0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- 127.0.0.1:8545:8545

zk:
image: matterlabs/zk-environment:cuda-12-0-latest
image: ghcr.io/matter-labs/zk-environment:cuda-12-0-latest
depends_on:
- reth
- postgres
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-gpu-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- 127.0.0.1:8545:8545

zk:
image: "matterlabs/zk-environment:cuda-11-8-latest"
image: "ghcr.io/matter-labs/zk-environment:cuda-11-8-latest"
container_name: zk
depends_on:
- reth
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-runner-nightly.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.2'
services:
zk:
image: matterlabs/zk-environment:latest2.0-lightweight-nightly
image: ghcr.io/matter-labs/zk-environment:latest2.0-lightweight-nightly
extends:
file: docker-compose.yml
service: zk
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:

# This is specific to runner
zk:
image: "matterlabs/zk-environment:latest2.0-lightweight"
image: "ghcr.io/matter-labs/zk-environment:latest2.0-lightweight"
security_opt:
- seccomp:unconfined
command: tail -f /dev/null
Expand Down

0 comments on commit 38f61c3

Please sign in to comment.