You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lychee/docker/build.sh

43 lines
1.1 KiB

#!/bin/bash
# ensure running bash
if ! [ -n "$BASH_VERSION" ];then
echo "this is not bash, calling self with bash....";
SCRIPT=$(readlink -f "$0")
/bin/bash $SCRIPT
exit;
fi
# Get the path to script just in case executed from elsewhere.
SCRIPT=$(readlink -f "$0")
SCRIPTPATH=$(dirname "$SCRIPT")
cd $SCRIPTPATH
# Load the variables from settings file.
source docker_settings.sh
# Copy the docker file up and run it in order to build the container.
# We need to move the dockerfile up so that it can easily add everything to the container.
cp -f Dockerfile ../../.
cp -f .dockerignore ../../.
cd ../../.
# Ask the user if they want to use the docker cache
read -p "Do you want to use a cached build (y/n)? " -n 1 -r
echo "" # (optional) move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]
then
docker build --pull --tag $REGISTRY/$PROJECT_NAME .
else
docker build --no-cache --pull --tag $REGISTRY/$PROJECT_NAME .
fi
# Remove the duplicated Dockerfile after the build.
rm $SCRIPTPATH/../../Dockerfile
rm $SCRIPTPATH/../../.dockerignore
docker push $REGISTRY/$PROJECT_NAME
echo "Run the container with the following command:"
echo "bash deploy.sh"