blackbirdchess-docker-dev/travis-build.sh

41 lines
942 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2017-04-30 15:52:22 +02:00
#### halt script on error
set -e
2017-05-04 10:15:28 +02:00
echo '##### Print docker version'
docker --version
echo '##### Print environment'
env | sort
#### Build the Docker Images
if [ -n "${PHP_VERSION}" ]; then
cp env-example .env
sed -i -- "s/PHP_VERSION=.*/PHP_VERSION=${PHP_VERSION}/g" .env
2017-04-18 09:07:27 +02:00
sed -i -- 's/=false/=true/g' .env
cat .env
2017-05-06 09:13:18 +02:00
docker-compose build ${BUILD_SERVICE}
docker images
fi
#### Generate the Laradock Documentation site using Hugo
if [ -n "${HUGO_VERSION}" ]; then
HUGO_PACKAGE=hugo_${HUGO_VERSION}_Linux-64bit
HUGO_BIN=hugo_${HUGO_VERSION}_linux_amd64
# Download hugo binary
curl -L https://github.com/spf13/hugo/releases/download/v$HUGO_VERSION/$HUGO_PACKAGE.tar.gz | tar xz
mkdir $HOME/bin
mv ./${HUGO_BIN}/${HUGO_BIN} $HOME/bin/hugo
# Remove existing docs
2017-05-07 18:00:19 +02:00
if [ -d "./docs" ]; then
rm -r ./docs
fi
# Build docs
2017-04-14 20:52:54 +02:00
cd DOCUMENTATION
hugo
fi