commit be71dc86ca7836392a5ce733d87a38541b2eda24
parent aa39723622cc61b420951d449e784072caf09189
Author: Joris Vink <joris@coders.se>
Date: Mon, 21 Mar 2022 14:42:32 +0100
Update version in README
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -3,7 +3,7 @@ Official kore docker images.
## Using base images to create a custom Docker container
```
-FROM kore/kore:4.1.0
+FROM kore/kore:4.2.1
WORKDIR /koreapp
COPY *.py .
@@ -17,7 +17,7 @@ CMD ["app.py"]
```
$ docker run -p 8888:8888 -it --rm \
-v `pwd`/code:/app \
- -w /app kore/kore:4.1.0 /app/app.py
+ -w /app kore/kore:4.2.1 /app/app.py
```
## Using the kodev docker image
@@ -51,7 +51,7 @@ path. You can use a volume to export that directory to your host instead.
$ docker run -p 8888:8888 -it --rm \
-v `pwd`/code:/app \
-v `pwd`/keymgr:/var/chroot/keymgr \
- -w /app kore/kore:4.1.0 /app/app.py
+ -w /app kore/kore:4.2.1 /app/app.py
```
## Deployment target