Skip to content

Instantly share code, notes, and snippets.

@joelnitta
Last active August 24, 2022 05:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save joelnitta/55d9a045c41077f3143971c0b981c130 to your computer and use it in GitHub Desktop.
Save joelnitta/55d9a045c41077f3143971c0b981c130 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