From 9f41019e5c6a88f354c615ee22ae9a8e200e6c46 Mon Sep 17 00:00:00 2001 From: Vitaly Volozhinov Date: Mon, 23 Aug 2021 19:29:03 +0200 Subject: [PATCH] Updating docs to `1.0.7` --- docs/INSTALL_AND_RUN.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/INSTALL_AND_RUN.md b/docs/INSTALL_AND_RUN.md index 0697193..e998058 100644 --- a/docs/INSTALL_AND_RUN.md +++ b/docs/INSTALL_AND_RUN.md @@ -140,7 +140,7 @@ git clone https://github.com/SimplyVC/oasis_api_server Then run the following commands to build the image: ```bash cd oasis_api_server -docker build -t simplyvc/oasis_api_server:1.0.6 . +docker build -t simplyvc/oasis_api_server:1.0.7 . ``` @@ -148,7 +148,7 @@ docker build -t simplyvc/oasis_api_server:1.0.6 . The pre-built Docker image can simply be downloaded by running the following command: ```bash -docker pull simplyvc/oasis_api_server:1.0.6 +docker pull simplyvc/oasis_api_server:1.0.7 ``` #### Config Files Directory and Permissions @@ -175,7 +175,7 @@ docker run --network="host" -p 127.0.0.1:8686:8686 \ --mount type=bind,source=,target=/app/config/ \ --mount type=bind,source=,target= \ --mount type=bind,source=,target= \ - -d simplyvc/oasis_api_server:1.0.6 + -d simplyvc/oasis_api_server:1.0.7 ``` Note: The port after `-p` and before the `:` is used to route a port from the machine to the internal port of the Docker. If this is changed, any program which refers to the API Docker container must refer to this port.\