image names in readme

This commit is contained in:
Dan Suster 2021-01-04 20:41:50 +01:00
parent 78b9ac82dc
commit dd59f2dd8f
Signed by: dan
GPG Key ID: 8950CA05C8CEEB38

View File

@ -24,16 +24,16 @@ docker login registry.thegolem.cz
``` ```
Build the image (use actual version) Build the image (use actual version)
```bash ```bash
docker build . -t golem/golem-lp:1.1.0 -t golem/golem-lp:latest docker build . -t golem/landing-page:1.1.0 -t golem/landing-page:latest
``` ```
Tag the image (use actual version) Tag the image (use actual version)
```bash ```bash
docker tag golem/golem-lp:latest registry.thegolem.cz/golem/golem-lp:latest docker tag golem/landing-page:latest registry.thegolem.cz/golem/landing-page:latest
docker tag golem/golem-lp:1.1.0 registry.thegolem.cz/golem/golem-lp:1.1.0 docker tag golem/landing-page:1.1.0 registry.thegolem.cz/golem/landing-page:1.1.0
``` ```
Push the image to registry Push the image to registry
```bash ```bash
docker push registry.thegolem.cz/golem/golem-lp:latest docker push registry.thegolem.cz/golem/landing-page:latest
docker push registry.thegolem.cz/golem/golem-lp:1.1.0 docker push registry.thegolem.cz/golem/landing-page:1.1.0
``` ```