1
0
mirror of https://github.com/stucki/docker-lineageos synced 2024-12-19 17:12:29 -05:00
docker-lineageos/run.sh

72 lines
1.7 KiB
Bash
Raw Normal View History

2017-04-21 06:50:59 -04:00
#!/usr/bin/env bash
2014-02-02 05:52:53 -05:00
2017-04-21 07:02:43 -04:00
set -euo pipefail
2014-02-02 05:52:53 -05:00
cd $(dirname $0)
SOURCE=$(pwd)/android
CCACHE=$(pwd)/ccache
2017-01-03 13:15:12 -05:00
CONTAINER_HOME=/home/build
CONTAINER=lineageos
REPOSITORY=stucki/lineageos
2017-01-03 15:32:46 -05:00
TAG=cm-14.1
2014-12-22 12:38:37 -05:00
FORCE_BUILD=0
2016-04-04 11:54:27 -04:00
PRIVILEGED=
2016-04-04 14:23:24 -04:00
while [[ $# > 0 ]]; do
key="$1"
case $key in
-r|--rebuild)
FORCE_BUILD=1
;;
-u|--enable-usb)
PRIVILEGED="--privileged -v /dev/bus/usb:/dev/bus/usb"
;;
*)
shift # past argument or value
;;
esac
shift
2016-04-04 11:54:27 -04:00
done
2014-02-02 05:52:53 -05:00
2014-06-28 10:19:18 -04:00
# Create shared folders
# Although Docker would create non-existing directories on the fly,
# we need to have them owned by the user (and not root), to be able
# to write in them, which is a necessity for startup.sh
2016-04-04 11:55:06 -04:00
mkdir -p $SOURCE
mkdir -p $CCACHE
2014-02-02 05:52:53 -05:00
# Build image if needed
2015-04-03 13:58:10 -04:00
IMAGE_EXISTS=$(docker images $REPOSITORY)
if [ $? -ne 0 ]; then
echo "docker command not found"
exit $?
2015-04-03 13:58:10 -04:00
elif [[ $FORCE_BUILD = 1 ]] || ! echo "$IMAGE_EXISTS" | grep -q "$TAG"; then
2015-03-15 12:38:12 -04:00
echo "Building Docker image $REPOSITORY:$TAG..."
docker build \
--pull \
-t $REPOSITORY:$TAG \
--build-arg hostuid=$(id -u) \
--build-arg hostgid=$(id -g) \
.
# After successful build, delete existing containers
IS_EXISTING=$(docker inspect -f '{{.Id}}' $CONTAINER 2>/dev/null) || true
2017-04-21 07:02:52 -04:00
if [[ -n $IS_EXISTING ]]; then
docker rm $CONTAINER >/dev/null
fi
fi
2014-07-18 17:48:18 -04:00
# With the given name $CONTAINER, reconnect to running container, start
# an existing/stopped container or run a new one if one does not exist.
IS_RUNNING=$(docker inspect -f '{{.State.Running}}' $CONTAINER 2>/dev/null) || true
if [[ $IS_RUNNING == "true" ]]; then
docker attach $CONTAINER
elif [[ $IS_RUNNING == "false" ]]; then
docker start -i $CONTAINER
else
docker run $PRIVILEGED -v $SOURCE:$CONTAINER_HOME/android:Z -v $CCACHE:/srv/ccache:Z -i -t --name $CONTAINER $REPOSITORY:$TAG
fi
2014-02-02 05:52:53 -05:00
exit $?