added some scripts

This commit is contained in:
Jeffrey Paul 2018-08-19 18:13:14 +00:00
parent 78c1a2db4f
commit 833b5c0f24
3 changed files with 35 additions and 0 deletions

13
bin/nue3.docker Executable file
View File

@ -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

2
bin/setup Normal file → Executable file
View File

@ -1,5 +1,7 @@
#!/bin/bash
exit 0 # FIXME wip
function do_osx_setup {
cc

20
bin/setup-pixelbook Executable file
View File

@ -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