[ZK Stack] - How to deploy zkstack in docker? #627
-
Module Affected
Rust Version1.78.0-nightly Operating System
Issue DescriptionHow to deploy zkstack in docker with customer token? Expected BehaviorGenerate a docker-compose file to start zkstack like https://github.com/matter-labs/local-setup.git did. Current BehaviorNon idea. Repository Link (if applicable)No response Additional DetailsNo response Prior Research
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
To deploy ZK Stack in Docker, you can follow these general steps:
Regarding the difference between
For a more detailed guide and custom configurations, you might want to refer to the ZKsync Node Quick Start Guide and the Docker L1 - L2 Nodes documentation. These resources provide comprehensive instructions on setting up ZKsync nodes using Docker. Your feedback helps us serve you better. If this fully addresses your question, please give it a thumbs up. If it doesn't, please give it a thumbs down. This will inform the community and team so we can improve our support. |
Beta Was this translation helpful? Give feedback.
-
Hey @SuccinctPaul it seems like you've asked in a few different posts about the custom base token. Are they all related or are each different? #622 (comment) and #626 (comment) |
Beta Was this translation helpful? Give feedback.
To deploy ZK Stack in Docker, you can follow these general steps:
Clone the ZKsync Era repository:
git clone https://github.com/matter-labs/zksync-era.git cd zksync-era
Set up Docker:
Ensure Docker and Docker Compose are installed on your machine. If not, you can install them from Docker's official site.
Generate Docker Compose File:
Use the
zk stack docker-setup
command to generate docker images for your server and prover. This will guide you through naming and tagging your image. After building it, a docker-compose file will be available for running the images in your desired environment.Run Docker Compose:
Navigate to the directory containing your docker-compose file and start…