Created
December 23, 2020 05:58
-
-
Save joelnitta/034e684bc4f33393a8454717dffd336a to your computer and use it in GitHub Desktop.
Start rootless docker daemon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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