mirror of
https://github.com/novatiq/packages.git
synced 2026-04-28 14:48:39 +01:00
f2793d55fe
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
12 lines
243 B
Bash
12 lines
243 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
USE_PROCD=1
|
|
START=25
|
|
|
|
# docker can't run with a symlink in the path so we just use /opt/docker/
|
|
start_service() {
|
|
procd_open_instance
|
|
procd_set_param command /usr/bin/dockerd -g /opt/docker/
|
|
procd_close_instance
|
|
}
|