Skip to content

Instantly share code, notes, and snippets.

@joelnitta
Created December 23, 2020 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joelnitta/034e684bc4f33393a8454717dffd336a to your computer and use it in GitHub Desktop.
Save joelnitta/034e684bc4f33393a8454717dffd336a to your computer and use it in GitHub Desktop.
Start rootless docker daemon
#!/usr/bin/bash
# Start docker daemon in background
nohup dockerd-rootless.sh --experimental --storage-driver vfs >| dockerd.log 2>&1 &
# Save the process ID so we can kill it later
echo $! > dockerd.pid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment