From 491d9c9200422498a5c64d45556a973b30e0da83 Mon Sep 17 00:00:00 2001 From: naomijub Date: Wed, 24 Mar 2021 21:37:34 -0300 Subject: [PATCH] beta-5 --- Dockerfile | 6 +++--- book/src/sec-2-installation.md | 2 +- woori-db/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0f3c5e5..daba261 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM rust:latest RUN apt-get update && apt-get install make -ADD https://github.com/naomijub/wooridb/archive/0.1.4.tar.gz / -RUN tar -zxvf 0.1.4.tar.gz -WORKDIR /wooridb-0.1.4 +ADD https://github.com/naomijub/wooridb/archive/0.1.5.tar.gz / +RUN tar -zxvf 0.1.5.tar.gz +WORKDIR /wooridb-0.1.5 RUN rm -rf book/ woori-db/data/ benches/ data/*.txt EXPOSE 1438 diff --git a/book/src/sec-2-installation.md b/book/src/sec-2-installation.md index f8bc841..484a73f 100644 --- a/book/src/sec-2-installation.md +++ b/book/src/sec-2-installation.md @@ -16,7 +16,7 @@ To run WooriDB it is necessary to have Rust installed in the machine. There are ### Docker -You can find the latest docker image at **[naomijub/wooridb](https://hub.docker.com/repository/docker/naomijubs/wooridb)**. Currently the most stable tag is [**`beta-4`**](https://github.com/naomijub/wooridb/releases/tag/0.1.4). To execute the docker container run: +You can find the latest docker image at **[naomijub/wooridb](https://hub.docker.com/repository/docker/naomijubs/wooridb)**. Currently the most stable tag is [**`beta-4`**](https://github.com/naomijub/wooridb/releases/tag/0.1.5). To execute the docker container run: * `docker run -p 1438:1438 naomijubs/wooridb:beta-4 debug` for debug mode. * `docker run -p 1438:1438 -e AUTH_HASHING_COST=8 -e ADMIN=your-admin-id -e ADMIN_PASSWORD=your-admin-pswd naomijubs/wooridb:beta-4 run` for size optimization. diff --git a/woori-db/Cargo.toml b/woori-db/Cargo.toml index 3ec94dc..7f5fc51 100644 --- a/woori-db/Cargo.toml +++ b/woori-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "woori-db" -version = "0.1.4" +version = "0.1.5" authors = ["Julia Naomi "] description = "WooriDB is a general purpose time serial database with some relation algebra" readme = "README.md"