From 10067bb4f5eeed70c424945bc2c7f68143f97f66 Mon Sep 17 00:00:00 2001 From: "Antonovic P. Milan" Date: Thu, 25 Nov 2021 17:31:02 +0100 Subject: [PATCH] dev --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 7f9d21e..e5ba02a 100755 --- a/README.md +++ b/README.md @@ -70,3 +70,18 @@ Build the image with docker version=$(cat ./VERSION.txt) docker build --no-cache -t istsos/istsos:$version . ``` + +## Push to docker hub + +```bash +version=$(cat ./VERSION.txt) +docker build --no-cache -t istsos/istsos:$version . +docker push istsos/istsos:$version +``` + +Tag latest an push + +```bash +docker image tag istsos/istsos:$version istsos/istsos:latest +docker push istsos/istsos:latest +```