1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05:00

Fix problem with docker push (#2912)

Co-authored-by: Joseph Flinn <58369717+joseph-flinn@users.noreply.github.com>
This commit is contained in:
M.A Heshmatkhah
2023-06-29 16:53:25 +03:30
committed by GitHub
parent d020c49c0e
commit 140f0017e3

View File

@ -25,7 +25,7 @@ docker_build() {
docker build -t bitwarden/$project_name_lower:$docker_tag $project_dir
if [ "$docker_push" == "1" ]; then
docker push bitwarden/$project_name_lower:$docker_tag $project_dir
docker push bitwarden/$project_name_lower:$docker_tag
fi
}