mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-12 09:11:14 +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 $?
|
|
}
|