mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-24 09:23:33 +00:00
39 lines
1.0 KiB
YAML
39 lines
1.0 KiB
YAML
kernel:
|
|
image: linuxkit/kernel:4.19.71
|
|
cmdline: "console=ttyS0"
|
|
init:
|
|
- linuxkit/init:1d8e0532ca588c5ad0d9ca6038349a70bb7ac626
|
|
- linuxkit/runc:c1f0db27e71d948f3134b31ce76276f843849b0a
|
|
- linuxkit/containerd:751de142273e1b5d2d247d2832d654ab92e907bc
|
|
onboot:
|
|
- name: dhcpcd
|
|
image: linuxkit/dhcpcd:v0.7
|
|
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
|
- name: mount-vpnkit
|
|
image: alpine:3.9
|
|
binds:
|
|
- /var/:/host_var:rbind,rshared
|
|
capabilities:
|
|
- CAP_SYS_ADMIN
|
|
rootfsPropagation: shared
|
|
command: ["sh", "-c", "mkdir /host_var/vpnkit && mount -v -t 9p -o trans=virtio,dfltuid=1001,dfltgid=50,version=9p2000 port /host_var/vpnkit"]
|
|
services:
|
|
- name: sshd
|
|
image: linuxkit/sshd:v0.7
|
|
- name: vpnkit-forwarder
|
|
image: linuxkit/vpnkit-forwarder:v0.7
|
|
binds:
|
|
- /var/vpnkit:/port
|
|
net: host
|
|
command: ["/vpnkit-forwarder"]
|
|
|
|
files:
|
|
- path: root/.ssh/authorized_keys
|
|
source: ~/.ssh/id_rsa.pub
|
|
mode: "0600"
|
|
optional: true
|
|
|
|
trust:
|
|
org:
|
|
- linuxkit
|