mirror of
https://github.com/thomisus/Docker-DocumentServer.git
synced 2026-05-17 04:00:02 +00:00
7 lines
132 B
Bash
7 lines
132 B
Bash
#!/bin/bash
|
|
|
|
NEW_TAG=6.4.2
|
|
NEW_IMAGE_NAME=$DOCKER_REPO:$NEW_TAG
|
|
|
|
docker tag $IMAGE_NAME $NEW_IMAGE_NAME
|
|
docker push $NEW_IMAGE_NAME
|