mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-02 11:02:28 +02:00
14 lines
171 B
Plaintext
Executable File
14 lines
171 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Docker Pull & Save"
|
|
|
|
depend() {
|
|
need docker localmount net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Loading docker images"
|
|
dpns-run
|
|
eend $?
|
|
}
|