mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-26 04:22:41 +00:00
17 lines
252 B
Plaintext
Executable File
17 lines
252 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
depend()
|
|
{
|
|
before docker
|
|
}
|
|
|
|
start()
|
|
{
|
|
ebegin "Setting up proxy port mount"
|
|
|
|
mkdir -p /port
|
|
mount -t 9p -o trans=virtio,dfltuid=1001,dfltgid=50,version=9p2000 port /port
|
|
|
|
eend $? "Failed to mount proxy port filesystem"
|
|
}
|