Skip to content

Instantly share code, notes, and snippets.

@sudo-battlekafer
sudo-battlekafer / docker-setup.sh
Last active June 30, 2022 21:36
Docker install/configure for Ubuntu with NFS or SMB storage
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
#prep for media mount
apt-get update
apt-get install -y nfs-common cifs-utils