Skip to content

Commit

Permalink
draft
Browse files Browse the repository at this point in the history
  • Loading branch information
NickVolynkin committed Aug 8, 2023
1 parent b834bcc commit d81ce3f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
version: '3.5'

services:
zkllvm:
image: ghcr.io/nilfoundation/zkllvm-template:0.0.86
platform: linux/amd64
user: "${UID}:${GID}"
volumes:
- ./:/opt/zkllvm-template
command: bash -c "tail -f /dev/null"
tty: true

toolchain:
# Proof Market toolchain
image: ghcr.io/nilfoundation/proof-market-toolchain:0.0.37
platform: linux/amd64
user: "${UID}:${GID}"
volumes:
- ./:/opt/zkllvm-template
- ./.config:/.config/
- ./.config:/root/.config/
- ./.config/.user:/proof-market-toolchain/scripts/.user
- ./.config/.secret:/proof-market-toolchain/scripts/.secret
command: bash -c "while true; do sleep 60; done"


verifier:
image: ghcr.io/nilfoundation/evm-placeholder-verification:latest
platform: linux/amd64
user: "${UID}:${GID}"
volumes:
- ./build/template:/opt/evm-placeholder-verification/contracts/zkllvm/template
command: bash -c "while true; do sleep 60; done"

0 comments on commit d81ce3f

Please sign in to comment.