diff --git a/bin/nue3.docker b/bin/nue3.docker new file mode 100755 index 0000000..992fe10 --- /dev/null +++ b/bin/nue3.docker @@ -0,0 +1,13 @@ +#!/bin/bash + +if [[ ! -d $HOME/tmp ]]; then + mkdir $HOME/tmp +fi + +DOCKER_HOST=unix://$HOME/tmp/docker.sock +if ! docker ps 2>&1 >/dev/null ; then + rm $HOME/tmp/docker.sock + ssh -nNT -L $HOME/tmp/docker.sock:/var/run/docker.sock root@nue3.eeqj.de +fi + +echo export DOCKER_HOST=unix://$HOME/tmp/docker.sock diff --git a/bin/setup b/bin/setup old mode 100644 new mode 100755 index 5ca8f9c..66f0a9b --- a/bin/setup +++ b/bin/setup @@ -1,5 +1,7 @@ #!/bin/bash +exit 0 # FIXME wip + function do_osx_setup { cc diff --git a/bin/setup-pixelbook b/bin/setup-pixelbook new file mode 100755 index 0000000..892f587 --- /dev/null +++ b/bin/setup-pixelbook @@ -0,0 +1,20 @@ +#!/bin/bash + + +if ! which docker ;then + sudo apt -y install \ + apt-transport-https \ + ca-certificates \ + curl \ + gnupg2 \ + software-properties-common + curl -fsSL https://download.docker.com/linux/debian/gpg | + sudo apt-key add - + sudo add-apt-repository \ + "deb [arch=amd64] https://download.docker.com/linux/debian \ + $(lsb_release -cs) \ + stable" + sudo apt update + sudo apt install -y docker-ce +fi +