Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mantonovic committed Nov 25, 2021
1 parent 5b0a7cd commit 10067bb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit 10067bb

Please sign in to comment.