Add docker setup script

This commit is contained in:
Gabriel Augendre 2020-08-17 12:06:13 +02:00
parent d535327b5b
commit 600327e070

13
docker/setup-docker Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env bash
# From https://git.sr.ht/~xaffe/card-librarian
# Under GPL v3
# Enable bash strict mode
set -euo pipefail
IFS=$'\n\t'
sudo mount -t tmpfs -o size=4G /dev/null /dev/shm
sleep 2
sudo nohup dockerd --bip 172.18.0.1/16 </dev/null >/dev/null 2>&1 &
sudo usermod -aG docker $(whoami)