From aa7e11aa88e91cc6687ab7199afebb2bfe0ea2af Mon Sep 17 00:00:00 2001 From: Dennis Kuhnert Date: Sat, 7 Jul 2018 18:01:26 +0200 Subject: [PATCH] Use zokrates dockerhub org --- Jenkinsfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a645bacc..dc1284d8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -34,7 +34,7 @@ pipeline { steps { script { ansiColor('xterm') { - dockerImage = docker.build("kyroy/zokrates") + dockerImage = docker.build("zokrates/zokrates") dockerImage.inside { sh 'RUSTFLAGS="-D warnings" cargo build' } diff --git a/README.md b/README.md index 717222b4..fc110484 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Zokrates bridges this gap. It helps you create offchain programs and link them t Using Docker is currently the recommended way to get started with Zokrates. ```bash -docker run -ti kyroy/zokrates /bin/bash +docker run -ti zokrates/zokrates /bin/bash ``` Or build yourself with the following commands. ```bash