10 lines
284 B
Bash
Executable file
10 lines
284 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
VERSION="0.15.0"
|
|
|
|
docker login git.molez.org
|
|
|
|
docker image build --tag git.molez.org/mandlm/kopia:"${VERSION}" --tag git.molez.org/mandlm/kopia:latest .
|
|
|
|
docker image push git.molez.org/mandlm/kopia:"${VERSION}"
|
|
docker image push git.molez.org/mandlm/kopia:latest
|