forked from matter-labs/zksync-era
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(hyperchain-wizard): zkStack CLI GPU support (matter-labs#612)
## What ❔ Support for creating zk hyperchain via zk cli with GPU-based provers ## Why ❔ ## 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. - [X] Code has been formatted via `zk fmt` and `zk lint`. - [ ] Spellcheck has been run via `cargo spellcheck --cfg=./spellcheck/era.cfg --code 1`. --------- Co-authored-by: Igor Borodin <[email protected]>
- Loading branch information
1 parent
c4dc1e1
commit c7d4315
Showing
5 changed files
with
230 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
version: '3.2' | ||
networks: | ||
zkstack: | ||
driver: bridge | ||
services: | ||
geth: | ||
image: "matterlabs/geth:latest" | ||
ports: | ||
- "127.0.0.1:8545:8545" | ||
- "127.0.0.1:8546:8546" | ||
volumes: | ||
- type: bind | ||
source: ./volumes/geth | ||
target: /var/lib/geth/data | ||
networks: | ||
- zkstack | ||
container_name: geth | ||
postgres: | ||
image: "postgres:14" | ||
container_name: postgres | ||
ports: | ||
- "127.0.0.1:5432:5432" | ||
volumes: | ||
- type: bind | ||
source: ./volumes/postgres | ||
target: /var/lib/postgresql/data | ||
environment: | ||
# We bind only to 127.0.0.1, so setting insecure password is acceptable here | ||
- POSTGRES_PASSWORD=notsecurepassword | ||
command: | ||
- "postgres" | ||
- "-c" | ||
- "max_connections=1000" | ||
networks: | ||
- zkstack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.