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

Merge pull request #1 from gmacario/fix-docker-name

Fix "docker --name" command line option.
This commit is contained in:
Michael Stucki 2014-05-04 17:12:37 +02:00
commit bdb173a9d6

2
run.sh
View File

@ -10,6 +10,6 @@ REPOSITORY=stucki/cyanogenmod
test -d $SOURCE || mkdir $SOURCE
# Try to start an existing/stopped container with the given name $CONTAINER. Otherwise, run a new one.
docker start -i $CONTAINER 2>/dev/null || docker run -v $SOURCE:/home/cmbuild/android -i -t -name $CONTAINER $REPOSITORY sh -c "screen -s /bin/bash"
docker start -i $CONTAINER 2>/dev/null || docker run -v $SOURCE:/home/cmbuild/android -i -t --name $CONTAINER $REPOSITORY sh -c "screen -s /bin/bash"
exit $?