mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
50 lines
1.2 KiB
Bash
Executable file
50 lines
1.2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
version=6.2.10
|
|
set -e -x
|
|
./ci/install_deps.sh
|
|
|
|
(
|
|
cd image
|
|
# pip install docker-squash
|
|
# make base squash-base server
|
|
make base
|
|
make pro-base
|
|
make pro-server
|
|
)
|
|
|
|
mkdir -p /opt/seafile-data
|
|
docker run -d --name seafile -e SEAFILE_SERVER_HOSTNAME=127.0.0.1 -v /opt/seafile-data:/shared -p 80:80 -p 443:443 seafileltd/seafile-pro:$version
|
|
|
|
|
|
cat > doc.md <<EOF
|
|
# Doc
|
|
|
|
Hello world.
|
|
EOF
|
|
|
|
sleep 50
|
|
python ci/upload.py doc.md
|
|
python ci/validate_file.py doc.md
|
|
docker restart seafile
|
|
sleep 30
|
|
python ci/validate_file.py doc.md
|
|
docker rm -f seafile
|
|
docker run -d --name seafile -e SEAFILE_SERVER_HOSTNAME=127.0.0.1 -v /opt/seafile-data:/shared -p 80:80 -p 443:443 seafileltd/seafile-pro:$version
|
|
sleep 30
|
|
python ci/validate_file.py doc.md
|
|
|
|
rm -rf doc.md
|
|
|
|
if [[ $TRAVIS_TAG =~ ^v([0-9]*?)(\.([0-9])*?){2}-pro$ ]]; then
|
|
ci/publish-pro-image.sh
|
|
elif [[ $TRAVIS_TAG =~ ^v([0-9]*?)(\.([0-9])*?){2}$ ]]; then
|
|
ci/publish-image.sh
|
|
elif [[ $TRAVIS_TAG =~ ^seafile-pro-base$ ]]; then
|
|
ci/publish-pro-base.sh
|
|
elif [[ $TRAVIS_TAG =~ ^seafile-base$ ]]; then
|
|
ci/publish-base.sh
|
|
else
|
|
echo "Not going to push the image to docker hub, since it's not a build triggered by a tag"
|
|
fi
|