I ran this:
docker build -t "oresoftware/live-mutex-broker:1.0.2" .
docker push "oresoftware/live-mutex-broker:1.0.2"
that worked. So how can I can then tag this as latest, and "push" the same image to
docker push "oresoftware/live-mutex-broker:latest"
what's the proper way to do this? My guess is:
docker tag "oresoftware/live-mutex-broker:latest" "oresoftware/live-mutex-broker:1.0.2"
but I don't really know. Nope didn't work, I tried that, and I get:
Error response from daemon: No such image: oresoftware/live-mutex-broker:latest
so maybe switch the operands?