mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
23 lines
662 B
Bash
Executable file
23 lines
662 B
Bash
Executable file
#!/bin/bash
|
|
|
|
######################################
|
|
# Publish the seafile server image (e.g. seafileltd/seafile:6.2.5) 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_USERNAME" -p="$DOCKER_PASSWORD"
|
|
|
|
## Always use the base image we build manually to reduce the download size of the end user.
|
|
docker rm -f $(docker ps -a -q)
|
|
docker rmi -f $(docker images -a -q)
|
|
docker pull seafileltd/base:18.04
|
|
|
|
(
|
|
cd image
|
|
make server push-server
|
|
)
|