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 a5c0e90
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
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 "sleep 60"
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 "sleep 60"


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 "sleep 60"

0 comments on commit a5c0e90

Please sign in to comment.