From 4e0cf1bd98783655d66b8fa5b58d5da553b7f298 Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Mon, 22 Apr 2024 02:58:05 +0100 Subject: [PATCH] Update docker instructions in README --- INSTALLING.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/INSTALLING.md b/INSTALLING.md index 02f5919..7274407 100644 --- a/INSTALLING.md +++ b/INSTALLING.md @@ -1,10 +1,11 @@ # With docker -1. Clone the repository -2. Run `docker build -t ipserv:latest .` -3. Run `docker run -it --name ipserv --restart unless-stopped -p 8080:80/tcp -e "GUNICORN_CMD_ARGS='-w $(nproc)'" -d ipserv:latest` -4. Access `http://localhost:8080/` in your browser -5. Profit!? +**Warning:** `latest` is automatically built and published from the `master` branch. It is not recommended to use `latest` in production. +You should, instead, use a specific commit hash. + +1. Run `docker run -it --name ipserv --restart unless-stopped -p 8080:80/tcp -e "GUNICORN_CMD_ARGS='-w $(nproc)'" -d git.i-am.nexus/nex/ipserv:latest` +2. Access `http://localhost:8080/` in your browser +3. Profit!? ## Without docker