diff --git a/.gitignore b/.gitignore index c6d52fd..c4ce661 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ jtorre-user jtorre-docker-token .notes.txt .localbuild +.bcli-local-tar \ No newline at end of file diff --git a/bcli-develop.sh b/bcli-develop.sh index ca9af64..67f42ac 100644 --- a/bcli-develop.sh +++ b/bcli-develop.sh @@ -1,6 +1,7 @@ bcli() { if [ "$1" = "up" ]; then - docker run --rm -d -v $HOME:/host --name "bcli-develop" -h "bcli-develop" -e USER=$USER -e USER_ID=$(id -u) -e GROUP_ID=$(id -g) -e DISPLAY=$DISPLAY -v "/tmp/.X11-unix:/tmp/.X11-unix:rw" ${BCLI_IMAGE:-public.ecr.aws/l5h5o6z4/broccoli-cli:latest} > /dev/null + docker run --rm -d -v $HOME:/host --name "bcli-develop" -h "bcli-develop" -e USER=$USER -e USER_ID=$(id -u) -e GROUP_ID=$(id -g) -e DISPLAY=$DISPLAY -v "/tmp/.X11-unix:/tmp/.X11-unix:rw" public.ecr.aws/l5h5o6z4/broccoli-cli:latest > /dev/null + #docker run --rm -d -v $HOME:/host --name "bcli-develop" -h "bcli-develop" -e USER=$USER -e USER_ID=$(id -u) -e GROUP_ID=$(id -g) -e DISPLAY=$DISPLAY -v "/tmp/.X11-unix:/tmp/.X11-unix:rw" ${BCLI_IMAGE:-public.ecr.aws/l5h5o6z4/broccoli-cli:latest} > /dev/null echo "bcli-develop started" elif [ "$1" = "down" ]; then docker stop bcli-develop > /dev/null