1
0
mirror of https://github.com/stucki/docker-lineageos synced 2025-01-09 17:39:47 -05:00

72 lines
1.7 KiB
Bash
Raw Normal View History

2017-04-21 12:50:59 +02:00
#!/usr/bin/env bash
2014-02-02 11:52:53 +01:00
2017-04-21 13:02:43 +02:00
set -euo pipefail
2014-02-02 11:52:53 +01:00
cd $(dirname $0)
SOURCE=$(pwd)/android
CCACHE=$(pwd)/ccache
2017-01-03 19:15:12 +01:00
CONTAINER_HOME=/home/build
CONTAINER=lineageos
REPOSITORY=stucki/lineageos
2017-01-03 21:32:46 +01:00
TAG=cm-14.1
2014-12-22 18:38:37 +01:00
FORCE_BUILD=0
2016-04-04 17:54:27 +02:00
PRIVILEGED=
2016-04-04 20:23:24 +02: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 17:54:27 +02:00
done
2014-02-02 11:52:53 +01:00
2014-06-28 16:19:18 +02: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 17:55:06 +02:00
mkdir -p $SOURCE
mkdir -p $CCACHE
2014-02-02 11:52:53 +01:00
# Build image if needed
2015-04-03 19:58:10 +02:00
IMAGE_EXISTS=$(docker images $REPOSITORY)
if [ $? -ne 0 ]; then
echo "docker command not found"
exit $?
2015-04-03 19:58:10 +02:00
elif [[ $FORCE_BUILD = 1 ]] || ! echo "$IMAGE_EXISTS" | grep -q "$TAG"; then
2015-03-15 17:38:12 +01: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 13:02:52 +02:00
if [[ -n $IS_EXISTING ]]; then
docker rm $CONTAINER
fi
fi
2014-07-18 23:48:18 +02: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 11:52:53 +01:00
exit $?