Skip to content

Instantly share code, notes, and snippets.

@onlurking
Created February 24, 2017 06:23
Show Gist options
  • Save onlurking/1928a71ace44e73bf84ab14cd250a5a8 to your computer and use it in GitHub Desktop.
Save onlurking/1928a71ace44e73bf84ab14cd250a5a8 to your computer and use it in GitHub Desktop.
OpenRC Docker Service
#!/usr/bin/openrc-run
# $Header: $
start() {
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start --background --exec /usr/bin/dockerd
eend $?
}
stop() {
ebegin "Shutting down ${SVCNAME}"
start-stop-daemon --stop --quiet --exec /usr/bin/dockerd
eend $?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment