mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
25 lines
674 B
Bash
Executable file
25 lines
674 B
Bash
Executable file
#!/bin/bash
|
|
|
|
######################################
|
|
# Publish the seafile pro-base image to docker
|
|
# registry. This script should only be called during a travis build trigger by a tag.
|
|
######################################
|
|
|
|
# Nerver use "set -x" or it would expose the docker credentials in the travis logs!
|
|
set -e
|
|
set -o pipefail
|
|
|
|
docker login -u="$DOCKER_PRO_REGISTRY_USER" -p="$DOCKER_PRO_REGISTRY_PASSWORD" docker.seadrive.org
|
|
|
|
(
|
|
cd image
|
|
make host=docker.seadrive.org push-pro-base
|
|
)
|
|
|
|
docker login -u="$LOCAL_DOCKER_PRO_REGISTRY_USER" -p="$LOCAL_DOCKER_PRO_REGISTRY_PASSWORD" docker.seafile.top
|
|
|
|
(
|
|
cd image
|
|
make host=docker.seafile.top push-pro-base
|
|
)
|