mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
13 lines
171 B
Text
Executable file
13 lines
171 B
Text
Executable file
#!/sbin/openrc-run
|
|
|
|
description="Docker Pull & Save"
|
|
|
|
depend() {
|
|
need docker localmount net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Loading docker images"
|
|
dpns-run
|
|
eend $?
|
|
}
|