Merge pull request #2178 from justincormack/quotes

Consistently don't use quotes around image names
This commit is contained in:
Justin Cormack 2017-07-09 19:33:15 +01:00 committed by GitHub
commit 73b0e53b70
101 changed files with 426 additions and 426 deletions

View File

@ -1,6 +1,6 @@
# This is a blueprint for building the open source components of Docker for Mac # This is a blueprint for building the open source components of Docker for Mac
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/vpnkit-expose-port:e2b49a6c56fbf876ea24f0a5ce4ccae5f940d1be # install vpnkit-expose-port and vpnkit-iptables-wrapper on host - linuxkit/vpnkit-expose-port:e2b49a6c56fbf876ea24f0a5ce4ccae5f940d1be # install vpnkit-expose-port and vpnkit-iptables-wrapper on host
@ -10,22 +10,22 @@ init:
onboot: onboot:
# support metadata for optional config in /var/config # support metadata for optional config in /var/config
- name: metadata - name: metadata
image: "linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb" image: linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: sysfs - name: sysfs
image: "linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc" image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
# Format and mount the disk image in /var/lib/docker # Format and mount the disk image in /var/lib/docker
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mount - name: mount
image: "linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf" image: linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf
command: ["/mount.sh", "/var/lib/docker"] command: ["/mount.sh", "/var/lib/docker"]
# mount-vpnkit mounts the 9p share used by vpnkit to coordinate port forwarding # mount-vpnkit mounts the 9p share used by vpnkit to coordinate port forwarding
- name: mount-vpnkit - name: mount-vpnkit
image: "alpine:3.6" image: alpine:3.6
binds: binds:
- /var/:/host_var:rbind,rshared - /var/:/host_var:rbind,rshared
capabilities: capabilities:
@ -33,7 +33,7 @@ onboot:
rootfsPropagation: shared rootfsPropagation: shared
command: ["sh", "-c", "mkdir -p /host_var/vpnkit/port && mount -v -t 9p -o trans=virtio,dfltuid=1001,dfltgid=50,version=9p2000 port /host_var/vpnkit"] command: ["sh", "-c", "mkdir -p /host_var/vpnkit/port && mount -v -t 9p -o trans=virtio,dfltuid=1001,dfltgid=50,version=9p2000 port /host_var/vpnkit"]
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
# Enable acpi to shutdown on power events # Enable acpi to shutdown on power events
@ -41,35 +41,35 @@ services:
image: linuxkit/acpid:1966310cb75e28ffc668863a6577ee991327f918 image: linuxkit/acpid:1966310cb75e28ffc668863a6577ee991327f918
# Enable getty for easier debugging # Enable getty for easier debugging
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
# Run ntpd to keep time synchronised in the VM # Run ntpd to keep time synchronised in the VM
- name: ntpd - name: ntpd
image: "linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90" image: linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90
# VSOCK to unix domain socket forwarding. Forwards guest /var/run/docker.sock # VSOCK to unix domain socket forwarding. Forwards guest /var/run/docker.sock
# to a socket on the host. # to a socket on the host.
- name: vsudd - name: vsudd
image: "linuxkit/vsudd:adad4b6ab7529b6b95339eb0752b0c81a218d185" image: linuxkit/vsudd:adad4b6ab7529b6b95339eb0752b0c81a218d185
binds: binds:
- /var/run:/var/run - /var/run:/var/run
command: ["/vsudd", "-inport", "2376:unix:/var/run/docker.sock"] command: ["/vsudd", "-inport", "2376:unix:/var/run/docker.sock"]
# vpnkit-forwarder forwards network traffic to/from the host via VSOCK port 62373. # vpnkit-forwarder forwards network traffic to/from the host via VSOCK port 62373.
# It needs access to the vpnkit 9P coordination share # It needs access to the vpnkit 9P coordination share
- name: vpnkit-forwarder - name: vpnkit-forwarder
image: "linuxkit/vpnkit-forwarder:9c1545e7b093d1210118de7661d7346393ec195b" image: linuxkit/vpnkit-forwarder:9c1545e7b093d1210118de7661d7346393ec195b
binds: binds:
- /var/vpnkit:/port - /var/vpnkit:/port
net: host net: host
command: ["/vpnkit-forwarder", "-vsockPort", "62373"] command: ["/vpnkit-forwarder", "-vsockPort", "62373"]
# Monitor for image deletes and invoke a TRIM on the container filesystem # Monitor for image deletes and invoke a TRIM on the container filesystem
- name: trim-after-delete - name: trim-after-delete
image: "linuxkit/trim-after-delete:2a5fcbe080cd4a45bd75c2ea3856c069475d706d" image: linuxkit/trim-after-delete:2a5fcbe080cd4a45bd75c2ea3856c069475d706d
# When the host resumes from sleep, force a clock resync # When the host resumes from sleep, force a clock resync
- name: host-timesync-daemon - name: host-timesync-daemon
image: "linuxkit/host-timesync-daemon:e6c15e6ef75d302c1c22827bac249598fb365a83" image: linuxkit/host-timesync-daemon:e6c15e6ef75d302c1c22827bac249598fb365a83
trust: trust:
org: org:

View File

@ -3,7 +3,7 @@ services:
# Bind mounts /var/run to allow vsudd to connect to docker.sock, /var/vpnkit # Bind mounts /var/run to allow vsudd to connect to docker.sock, /var/vpnkit
# for vpnkit coordination and /var/config/docker for the configuration file. # for vpnkit coordination and /var/config/docker for the configuration file.
- name: docker-dfm - name: docker-dfm
image: "linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190" image: linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190
capabilities: capabilities:
- all - all
net: host net: host

View File

@ -40,9 +40,9 @@ To simplify the process, two `onboot` images are available for you to use:
```yml ```yml
onboot: onboot:
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mount - name: mount
image: "linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf" image: linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf
command: ["/mount.sh", "/var/external"] command: ["/mount.sh", "/var/external"]
``` ```

View File

@ -80,7 +80,7 @@ This will create a local kernel image called
`linuxkit/kernel:4.9.33-<hash>-dirty` assuming you haven't committed you local changes. You can then use this in your YAML file as: `linuxkit/kernel:4.9.33-<hash>-dirty` assuming you haven't committed you local changes. You can then use this in your YAML file as:
``` ```
kernel: kernel:
image: "linuxkit/kernel:4.9.33-<hash>-dirty" image: linuxkit/kernel:4.9.33-<hash>-dirty
``` ```
If you have committed your local changes, the `-dirty` will not be appended. Then you can also override the Hub organisation to use the image elsewhere with: If you have committed your local changes, the `-dirty` will not be appended. Then you can also override the Hub organisation to use the image elsewhere with:

View File

@ -25,7 +25,7 @@ Usage:
``` ```
services: services:
- name: open-vm-tools - name: open-vm-tools
image: "linuxkit/open-vm-tools:<HASH>" image: linuxkit/open-vm-tools:<HASH>
``` ```
### Qemu GuestAgent ### Qemu GuestAgent

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,21 +8,21 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: metadata - name: metadata
image: "linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb" image: linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
binds: binds:
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys - /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
- name: nginx - name: nginx
image: "nginx:alpine" image: nginx:alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,14 +8,14 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
files: files:
- path: root/.ssh/authorized_keys - path: root/.ssh/authorized_keys
source: ~/.ssh/id_rsa.pub source: ~/.ssh/id_rsa.pub

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,29 +8,29 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: sysfs - name: sysfs
image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mount - name: mount
image: "linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf" image: linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf
command: ["/mount.sh", "/var/lib/docker"] command: ["/mount.sh", "/var/lib/docker"]
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
- name: ntpd - name: ntpd
image: "linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90" image: linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90
- name: docker - name: docker
image: "linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190" image: linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190
capabilities: capabilities:
- all - all
net: host net: host

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,25 +8,25 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: metadata - name: metadata
image: "linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb" image: linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
binds: binds:
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys - /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
- name: nginx - name: nginx
image: "nginx:alpine" image: nginx:alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,18 +8,18 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
# to make insecure with passwordless root login, uncomment following lines # to make insecure with passwordless root login, uncomment following lines
#env: #env:
# - INSECURE=true # - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
files: files:
- path: etc/getty.shadow - path: etc/getty.shadow
# sample sets password for root to "abcdefgh" (without quotes) # sample sets password for root to "abcdefgh" (without quotes)

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,11 +7,11 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
trust: trust:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,15 +7,15 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
- name: node_exporter - name: node_exporter
image: "linuxkit/node_exporter:a058fe1c6a4440a9689022a9fd7cffdcfd56d52c" image: linuxkit/node_exporter:a058fe1c6a4440a9689022a9fd7cffdcfd56d52c
trust: trust:
org: org:
- linuxkit - linuxkit

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS1 page_poison=1" cmdline: "console=ttyS1 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,14 +8,14 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
files: files:
- path: root/.ssh/authorized_keys - path: root/.ssh/authorized_keys
source: ~/.ssh/id_rsa.pub source: ~/.ssh/id_rsa.pub

View File

@ -1,7 +1,7 @@
# Minimal YAML to run a redis server (used at DockerCon'17) # Minimal YAML to run a redis server (used at DockerCon'17)
# connect: nc localhost 6379 # connect: nc localhost 6379
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -9,15 +9,15 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: redis - name: redis
image: "redis:3.0.7-alpine" image: redis:3.0.7-alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,18 +8,18 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
files: files:
- path: root/.ssh/authorized_keys - path: root/.ssh/authorized_keys
source: ~/.ssh/id_rsa.pub source: ~/.ssh/id_rsa.pub

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,29 +8,29 @@ init:
- linuxkit/ca-certificates:eabc5a6e59f05aa91529d80e9a595b85b046f935 - linuxkit/ca-certificates:eabc5a6e59f05aa91529d80e9a595b85b046f935
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mount - name: mount
image: "linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf" image: linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf
command: ["/mount.sh", "/var/external"] command: ["/mount.sh", "/var/external"]
- name: swap - name: swap
image: "linuxkit/swap:b6d447b55da3c28bdd8a3f4e30fb42c1fa0157bb" image: linuxkit/swap:b6d447b55da3c28bdd8a3f4e30fb42c1fa0157bb
# to use unencrypted swap, use: # to use unencrypted swap, use:
# command: ["/swap.sh", "--path", "/var/external/swap", "--size", "1G"] # command: ["/swap.sh", "--path", "/var/external/swap", "--size", "1G"]
command: ["/swap.sh", "--path", "/var/external/swap", "--size", "1G", "--encrypt"] command: ["/swap.sh", "--path", "/var/external/swap", "--size", "1G", "--encrypt"]
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: nginx - name: nginx
image: "nginx:alpine" image: nginx:alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=tty0 page_poison=1" cmdline: "console=tty0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,18 +8,18 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
- name: nginx - name: nginx
image: "nginx:alpine" image: nginx:alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: mount-vpnkit - name: mount-vpnkit
image: "alpine:3.6" image: alpine:3.6
binds: binds:
- /var/:/host_var:rbind,rshared - /var/:/host_var:rbind,rshared
capabilities: capabilities:
@ -19,15 +19,15 @@ onboot:
command: ["sh", "-c", "mkdir /host_var/vpnkit && mount -v -t 9p -o trans=virtio,dfltuid=1001,dfltgid=50,version=9p2000 port /host_var/vpnkit"] 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: services:
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
- name: vpnkit-forwarder - name: vpnkit-forwarder
image: "linuxkit/vpnkit-forwarder:9c1545e7b093d1210118de7661d7346393ec195b" image: linuxkit/vpnkit-forwarder:9c1545e7b093d1210118de7661d7346393ec195b
binds: binds:
- /var/vpnkit:/port - /var/vpnkit:/port
net: host net: host
command: ["/vpnkit-forwarder"] command: ["/vpnkit-forwarder"]
- name: vpnkit-expose-port - name: vpnkit-expose-port
image: "linuxkit/vpnkit-forwarder:9c1545e7b093d1210118de7661d7346393ec195b" image: linuxkit/vpnkit-forwarder:9c1545e7b093d1210118de7661d7346393ec195b
net: none net: none
binds: binds:
- /var/vpnkit:/port - /var/vpnkit:/port

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,11 +7,11 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
- name: vsudd - name: vsudd
image: "linuxkit/vsudd:adad4b6ab7529b6b95339eb0752b0c81a218d185" image: linuxkit/vsudd:adad4b6ab7529b6b95339eb0752b0c81a218d185
binds: binds:
- /run/containerd/containerd.sock:/run/containerd/containerd.sock - /run/containerd/containerd.sock:/run/containerd/containerd.sock
command: ["/vsudd", command: ["/vsudd",

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,25 +8,25 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: metadata - name: metadata
image: "linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb" image: linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
binds: binds:
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys - /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
- name: nginx - name: nginx
image: "nginx:alpine" image: nginx:alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,21 +8,21 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: nginx - name: nginx
image: "nginx:alpine" image: nginx:alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -10,7 +10,7 @@ If you want a console getty, add the following to your `moby.yml`:
``` ```
services: services:
- name: getty - name: getty
image: "linuxkit/getty:<hash>" image: linuxkit/getty:<hash>
``` ```
The above will launch a getty for each console defined in the cmdline, i.e. `/proc/cmdline`. The above will launch a getty for each console defined in the cmdline, i.e. `/proc/cmdline`.

View File

@ -8,7 +8,7 @@ Normally, unless you are running explicitly in a desktop version, LinuxKit image
``` ```
onboot: onboot:
- name: swap - name: swap
image: "linuxkit/swap:<hash>" image: linuxkit/swap:<hash>
command: ["swap.sh","--path","/var/external/swap","--size","2G"] command: ["swap.sh","--path","/var/external/swap","--size","2G"]
``` ```

View File

@ -1,11 +1,11 @@
kernel: kernel:
image: "linuxkit/kernel-clear-containers:4.9.x" image: linuxkit/kernel-clear-containers:4.9.x
cmdline: "root=/dev/pmem0p1 rootflags=dax,data=ordered,errors=remount-ro rw rootfstype=ext4 tsc=reliable no_timer_check rcupdate.rcu_expedited=1 i8042.direct=1 i8042.dumbkbd=1 i8042.nopnp=1 i8042.noaux=1 noreplace-smp reboot=k panic=1 console=hvc0 console=hvc1 initcall_debug iommu=off quiet cryptomgr.notests page_poison=on" cmdline: "root=/dev/pmem0p1 rootflags=dax,data=ordered,errors=remount-ro rw rootfstype=ext4 tsc=reliable no_timer_check rcupdate.rcu_expedited=1 i8042.direct=1 i8042.dumbkbd=1 i8042.nopnp=1 i8042.noaux=1 noreplace-smp reboot=k panic=1 console=hvc0 console=hvc1 initcall_debug iommu=off quiet cryptomgr.notests page_poison=on"
init: init:
- linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e - linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e
onboot: onboot:
- name: sysctl - name: sysctl
image: "mobylinux/sysctl:2cf2f9d5b4d314ba1bfc22b2fe931924af666d8c" image: mobylinux/sysctl:2cf2f9d5b4d314ba1bfc22b2fe931924af666d8c
services: services:
- name: rngd - name: rngd
files: files:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e - linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e
@ -8,26 +8,26 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: sysfs - name: sysfs
image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mount - name: mount
image: "linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf" image: linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf
command: ["/mount.sh", "/var/lib/docker"] command: ["/mount.sh", "/var/lib/docker"]
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: ntpd - name: ntpd
image: "linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90" image: linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90
- name: docker - name: docker
image: "linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190" image: linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190
capabilities: capabilities:
- all - all
net: host net: host
@ -40,7 +40,7 @@ services:
- /var/run:/var/run - /var/run:/var/run
- /var/html:/var/html - /var/html:/var/html
- name: compose - name: compose
image: "linuxkitprojects/compose:0535e78608f57702745dfd56fbe78d28d237e469" image: linuxkitprojects/compose:0535e78608f57702745dfd56fbe78d28d237e469
binds: binds:
- /var/run:/var/run - /var/run:/var/run
- /var/compose:/compose - /var/compose:/compose

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e - linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e
@ -8,26 +8,26 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: sysfs - name: sysfs
image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mount - name: mount
image: "linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf" image: linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf
command: ["/mount.sh", "/var/lib/docker"] command: ["/mount.sh", "/var/lib/docker"]
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: ntpd - name: ntpd
image: "linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90" image: linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90
- name: docker - name: docker
image: "linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190" image: linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190
capabilities: capabilities:
- all - all
net: host net: host
@ -40,7 +40,7 @@ services:
- /var/run:/var/run - /var/run:/var/run
- /var/html:/var/html - /var/html:/var/html
- name: compose - name: compose
image: "linuxkitprojects/compose:0535e78608f57702745dfd56fbe78d28d237e469" image: linuxkitprojects/compose:0535e78608f57702745dfd56fbe78d28d237e469
binds: binds:
- /var/run:/var/run - /var/run:/var/run
- /var/compose:/compose - /var/compose:/compose

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e - linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e
@ -8,26 +8,26 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mount - name: mount
image: "linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf" image: linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf
command: ["/mount.sh", "/var/lib/etcd"] command: ["/mount.sh", "/var/lib/etcd"]
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: metadata - name: metadata
image: "linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb" image: linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: ntpd - name: ntpd
image: "linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90" image: linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90
- name: node_exporter - name: node_exporter
image: "linuxkit/node_exporter:a058fe1c6a4440a9689022a9fd7cffdcfd56d52c" image: linuxkit/node_exporter:a058fe1c6a4440a9689022a9fd7cffdcfd56d52c
- name: etcd - name: etcd
image: "moby/etcd" image: moby/etcd
capabilities: capabilities:
- CAP_CHOWN - CAP_CHOWN
- CAP_SETUID - CAP_SETUID

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "mobylinux/kernel:4.9.x" image: mobylinux/kernel:4.9.x
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e - linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e
@ -8,17 +8,17 @@ init:
- mobylinux/ca-certificates:eabc5a6e59f05aa91529d80e9a595b85b046f935 - mobylinux/ca-certificates:eabc5a6e59f05aa91529d80e9a595b85b046f935
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: metadata - name: metadata
image: "linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb" image: linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb
services: services:
- name: rngd - name: rngd
image: "mobylinux/rngd:3dad6dd43270fa632ac031e99d1947f20b22eec9" image: mobylinux/rngd:3dad6dd43270fa632ac031e99d1947f20b22eec9
- name: prometheus - name: prometheus
image: "moby/prom-us-central1-f" image: moby/prom-us-central1-f
binds: binds:
- /dev:/dev - /dev:/dev
- /var/lib/misc:/data - /var/lib/misc:/data

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel-ima:4.11.1-186dd3605ee7b23214850142f8f02b4679dbd148" image: linuxkit/kernel-ima:4.11.1-186dd3605ee7b23214850142f8f02b4679dbd148
cmdline: "console=ttyS0 console=tty0 page_poison=1 ima_appraise=enforce_ns" cmdline: "console=ttyS0 console=tty0 page_poison=1 ima_appraise=enforce_ns"
init: init:
- linuxkit/init:b3740303f3d1e5689a84c87b7dfb48fd2a40a192 - linuxkit/init:b3740303f3d1e5689a84c87b7dfb48fd2a40a192
@ -9,17 +9,17 @@ init:
- linuxkit/ima-utils:dfeb3896fd29308b80ff9ba7fe5b8b767e40ca29 - linuxkit/ima-utils:dfeb3896fd29308b80ff9ba7fe5b8b767e40ca29
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: nginx - name: nginx
image: "nginx:alpine" image: nginx:alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,15 +8,15 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: sysfs - name: sysfs
image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mounts - name: mounts
image: "linuxkit/kubernetes:latest-mounts" image: linuxkit/kubernetes:latest-mounts
capabilities: capabilities:
- all - all
pid: host pid: host
@ -26,19 +26,19 @@ onboot:
- /var:/var:rshared,rbind - /var:/var:rshared,rbind
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
- name: ntpd - name: ntpd
image: "linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90" image: linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
- name: docker - name: docker
image: "linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190" image: linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190
capabilities: capabilities:
- all - all
net: host net: host
@ -55,15 +55,15 @@ services:
- /opt/cni:/opt/cni:rshared,rbind - /opt/cni:/opt/cni:rshared,rbind
rootfsPropagation: shared rootfsPropagation: shared
- name: kubernetes-image-cache-common - name: kubernetes-image-cache-common
image: "linuxkit/kubernetes:latest-image-cache-common" image: linuxkit/kubernetes:latest-image-cache-common
binds: binds:
- /var/run:/var/run - /var/run:/var/run
- name: kubernetes-image-cache-control-plane - name: kubernetes-image-cache-control-plane
image: "linuxkit/kubernetes:latest-image-cache-control-plane" image: linuxkit/kubernetes:latest-image-cache-control-plane
binds: binds:
- /var/run:/var/run - /var/run:/var/run
- name: kubelet - name: kubelet
image: "linuxkit/kubernetes:latest" image: linuxkit/kubernetes:latest
capabilities: capabilities:
- all - all
net: host net: host

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,15 +8,15 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: sysfs - name: sysfs
image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mounts - name: mounts
image: "linuxkit/kubernetes:latest-mounts" image: linuxkit/kubernetes:latest-mounts
capabilities: capabilities:
- all - all
pid: host pid: host
@ -26,19 +26,19 @@ onboot:
- /var:/var:rshared,rbind - /var:/var:rshared,rbind
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
- name: ntpd - name: ntpd
image: "linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90" image: linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
- name: docker - name: docker
image: "linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190" image: linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190
capabilities: capabilities:
- all - all
net: host net: host
@ -55,11 +55,11 @@ services:
- /opt/cni:/opt/cni:rshared,rbind - /opt/cni:/opt/cni:rshared,rbind
rootfsPropagation: shared rootfsPropagation: shared
- name: kubernetes-image-cache-common - name: kubernetes-image-cache-common
image: "linuxkit/kubernetes:latest-image-cache-common" image: linuxkit/kubernetes:latest-image-cache-common
binds: binds:
- /var/run:/var/run - /var/run:/var/run
- name: kubelet - name: kubelet
image: "linuxkit/kubernetes:latest" image: linuxkit/kubernetes:latest
capabilities: capabilities:
- all - all
net: host net: host

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "mobylinux/kernel-landlock:4.9.x" image: mobylinux/kernel-landlock:4.9.x
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e - linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e
@ -8,10 +8,10 @@ init:
- mobylinux/ca-certificates:eabc5a6e59f05aa91529d80e9a595b85b046f935 - mobylinux/ca-certificates:eabc5a6e59f05aa91529d80e9a595b85b046f935
onboot: onboot:
- name: sysctl - name: sysctl
image: "mobylinux/sysctl:2cf2f9d5b4d314ba1bfc22b2fe931924af666d8c" image: mobylinux/sysctl:2cf2f9d5b4d314ba1bfc22b2fe931924af666d8c
services: services:
- name: rngd - name: rngd
image: "mobylinux/rngd:3dad6dd43270fa632ac031e99d1947f20b22eec9" image: mobylinux/rngd:3dad6dd43270fa632ac031e99d1947f20b22eec9
trust: trust:
image: image:
- linuxkit/kernel - linuxkit/kernel

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e # with runc, logwrite, startmemlogd - linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e # with runc, logwrite, startmemlogd
@ -9,17 +9,17 @@ init:
- linuxkit/memlogd:9b5834189f598f43c507f6938077113906f51012 - linuxkit/memlogd:9b5834189f598f43c507f6938077113906f51012
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: nginx - name: nginx
image: "nginx:alpine" image: nginx:alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.34" image: linuxkit/kernel:4.9.34
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -9,16 +9,16 @@ init:
- samoht/fdd - samoht/fdd
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
services: services:
- name: getty - name: getty
image: "linuxkit/getty:6cbeee0392b0670053ce2bf05a5a0d67ec2bce05" image: linuxkit/getty:6cbeee0392b0670053ce2bf05a5a0d67ec2bce05
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
files: files:
- path: etc/init.d/020-fdd-init - path: etc/init.d/020-fdd-init
mode: "0700" mode: "0700"

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -28,9 +28,9 @@ onboot:
- /lib:/lib # for ifconfig - /lib:/lib # for ifconfig
services: services:
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
files: files:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/okernel:latest" image: linuxkit/okernel:latest
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e - linuxkit/init:12348442d56c2ee9abf13ff38dff2e36b515bd1e
@ -8,14 +8,14 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
- name: sshd - name: sshd
image: "linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb" image: linuxkit/sshd:89b2e91d7d1bf2f40220be0e3ed586e74746cceb
files: files:
- path: root/.ssh/authorized_keys - path: root/.ssh/authorized_keys
source: ~/.ssh/id_rsa.pub source: ~/.ssh/id_rsa.pub

View File

@ -1,11 +1,11 @@
kernel: kernel:
image: "mobylinux/kernel-selinux:4.9.x" image: mobylinux/kernel-selinux:4.9.x
cmdline: "console=ttyS0 page_poison=1 security=selinux selinux=1" cmdline: "console=ttyS0 page_poison=1 security=selinux selinux=1"
init: init:
- "mobylinux/init:b5249a412536b4e69f8e1f668680d2ae185cc505" - "mobylinux/init:b5249a412536b4e69f8e1f668680d2ae185cc505"
onboot: onboot:
- name: sysctl - name: sysctl
image: "mobylinux/sysctl:2cf2f9d5b4d314ba1bfc22b2fe931924af666d8c" image: mobylinux/sysctl:2cf2f9d5b4d314ba1bfc22b2fe931924af666d8c
net: host net: host
pid: host pid: host
ipc: host ipc: host
@ -14,7 +14,7 @@ onboot:
readonly: true readonly: true
services: services:
- name: rngd - name: rngd
image: "mobylinux/rngd:3dad6dd43270fa632ac031e99d1947f20b22eec9" image: mobylinux/rngd:3dad6dd43270fa632ac031e99d1947f20b22eec9
capabilities: capabilities:
- CAP_SYS_ADMIN - CAP_SYS_ADMIN
oomScoreAdj: -800 oomScoreAdj: -800

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkitprojects/kernel-shiftfs:4.11.4-881a041fc14bd95814cf140b5e98d97dd65160b5" image: linuxkitprojects/kernel-shiftfs:4.11.4-881a041fc14bd95814cf140b5e98d97dd65160b5
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,21 +8,21 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
env: env:
- INSECURE=true - INSECURE=true
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: nginx - name: nginx
image: "nginx:alpine" image: nginx:alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,32 +8,32 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
binds: binds:
- /etc/sysctl.d/01-swarmd.conf:/etc/sysctl.d/01-swarmd.conf - /etc/sysctl.d/01-swarmd.conf:/etc/sysctl.d/01-swarmd.conf
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mount - name: mount
image: "linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf" image: linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf
command: ["/mount.sh", "/var/lib/swarmd"] command: ["/mount.sh", "/var/lib/swarmd"]
- name: metadata - name: metadata
image: "linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb" image: linuxkit/metadata:f122f1b4e873f1d08cd67bd9105385fd923af0cb
services: services:
- name: getty - name: getty
image: "linuxkit/getty:9f27c1272b6d128c9a09745e916f151d09cb0d27" image: linuxkit/getty:9f27c1272b6d128c9a09745e916f151d09cb0d27
env: env:
- INSECURE=true - INSECURE=true
- name: qemu-ga - name: qemu-ga
image: "linuxkit/qemu-ga:585e4f0161a4df7583d5e0479d7621040c1ee140" image: linuxkit/qemu-ga:585e4f0161a4df7583d5e0479d7621040c1ee140
binds: binds:
- /dev/vport0p1:/dev/vport0p1 - /dev/vport0p1:/dev/vport0p1
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: ntpd - name: ntpd
image: "linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90" image: linuxkit/openntpd:19370f5d9bec84eb91073b7196b732f1301d9c90
- name: weave - name: weave
image: weaveworks/weave@sha256:05172329b6ff72099db7bb891ac311b89948a3064ca9b8641c6b4abe38548677 # Must match swarmd/Dockerfile image: weaveworks/weave@sha256:05172329b6ff72099db7bb891ac311b89948a3064ca9b8641c6b4abe38548677 # Must match swarmd/Dockerfile
command: ["/bin/sh", "/home/weave/weaver-wrapper"] command: ["/bin/sh", "/home/weave/weaver-wrapper"]
@ -45,7 +45,7 @@ services:
- /var:/var - /var:/var
- /var/lib/swarmd:/weavedb - /var/lib/swarmd:/weavedb
- name: swarmd - name: swarmd
image: "linuxkitprojects/swarmd:1cd4c061cc7327750d2a12c267db6d4d9e26b1d3" image: linuxkitprojects/swarmd:1cd4c061cc7327750d2a12c267db6d4d9e26b1d3
command: ["/usr/bin/swarmd", "--containerd-addr=/run/containerd/containerd.sock", "--log-level=debug", "--state-dir=/var/lib/swarmd"] command: ["/usr/bin/swarmd", "--containerd-addr=/run/containerd/containerd.sock", "--log-level=debug", "--state-dir=/var/lib/swarmd"]
capabilities: capabilities:
- all - all

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel-wireguard:4.9.15-2ca28b7589b673373a33274023ca870a3a77e081" image: linuxkit/kernel-wireguard:4.9.15-2ca28b7589b673373a33274023ca870a3a77e081
cmdline: "console=ttyS0 console=tty0 page_poison=1" cmdline: "console=ttyS0 console=tty0 page_poison=1"
init: init:
- linuxkit/init:cbd7ae748f0a082516501a3e914fa0c924ee941e - linuxkit/init:cbd7ae748f0a082516501a3e914fa0c924ee941e
@ -9,17 +9,17 @@ init:
- linuxkit/wireguard-utils:26fe3d38455f2d441549e3c54bdec1b26ac819b8 - linuxkit/wireguard-utils:26fe3d38455f2d441549e3c54bdec1b26ac819b8
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:225c52c2d6f04a040663bac84cabf81825027f64" image: linuxkit/sysctl:225c52c2d6f04a040663bac84cabf81825027f64
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:603e5f064b3e8a64088c0fcf7a80d2783541ee1d" image: linuxkit/binfmt:603e5f064b3e8a64088c0fcf7a80d2783541ee1d
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: nginx - name: nginx
image: "nginx:alpine" image: nginx:alpine
capabilities: capabilities:
- CAP_NET_BIND_SERVICE - CAP_NET_BIND_SERVICE
- CAP_CHOWN - CAP_CHOWN

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,7 +7,7 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,7 +7,7 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,7 +7,7 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,7 +7,7 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,7 +7,7 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,7 +7,7 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,7 +7,7 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,7 +7,7 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,7 +7,7 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
services: services:
- name: acpid - name: acpid
image: "linuxkit/acpid:1966310cb75e28ffc668863a6577ee991327f918" image: linuxkit/acpid:1966310cb75e28ffc668863a6577ee991327f918
trust: trust:
org: org:
- linuxkit - linuxkit

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,9 +7,9 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: check-kernel-config - name: check-kernel-config
image: "linuxkit/test-kernel-config:9f08e3b99f8ac2f422251b3e8c94ce874ee34119" image: linuxkit/test-kernel-config:9f08e3b99f8ac2f422251b3e8c94ce874ee34119
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,9 +7,9 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: check-kernel-config - name: check-kernel-config
image: "linuxkit/test-kernel-config:9f08e3b99f8ac2f422251b3e8c94ce874ee34119" image: linuxkit/test-kernel-config:9f08e3b99f8ac2f422251b3e8c94ce874ee34119
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,9 +7,9 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: check-kernel-config - name: check-kernel-config
image: "linuxkit/test-kernel-config:9f08e3b99f8ac2f422251b3e8c94ce874ee34119" image: linuxkit/test-kernel-config:9f08e3b99f8ac2f422251b3e8c94ce874ee34119
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,14 +7,14 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: check - name: check
image: "kmod-test" image: kmod-test
binds: binds:
- /dev:/dev - /dev:/dev
- /lib/modules:/lib/modules - /lib/modules:/lib/modules
capabilities: capabilities:
- all - all
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.4.76" image: linuxkit/kernel:4.4.76
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-tcp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-tcp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-r", "-i", "20", "-c", "5", "-t", "veth", "-p", "-udp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "4"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "4"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.11.9" image: linuxkit/kernel:4.11.9
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,10 +7,10 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test-netns - name: test-netns
image: "linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776" image: linuxkit/test-netns:3e02fb2730ad29a732eb2d4c711cb890169ed776
command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "6"] command: ["/bin/sh", "/runp.sh", "20", "/netns.sh", "-i", "20", "-c", "5", "-t", "loopback", "-p", "-udp", "-ip", "6"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "3"] command: ["/bin/sh", "/poweroff.sh", "3"]
trust: trust:
org: org:

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,23 +8,23 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: sysfs - name: sysfs
image: "linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc" image: linuxkit/sysfs:006a65b30cfdd9d751d7ab042fde7eca2c3bc9dc
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: format - name: format
image: "linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954" image: linuxkit/format:84a997e69051a1bf05b7c1926ab785bb07932954
- name: mount - name: mount
image: "linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf" image: linuxkit/mount:b24bd97ae43397b469dbaadd80f17f291c817bdf
command: ["/mount.sh", "/var/lib/docker"] command: ["/mount.sh", "/var/lib/docker"]
services: services:
- name: rngd - name: rngd
image: "linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b" image: linuxkit/rngd:1516d5d70683a5d925fe475eb1b6164a2f67ac3b
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
- name: docker - name: docker
image: "linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190" image: linuxkit/docker-ce:9b937df179bdbebbc70243779978057df0b54190
capabilities: capabilities:
- all - all
net: host net: host
@ -36,7 +36,7 @@ services:
- /lib/modules:/lib/modules - /lib/modules:/lib/modules
- /run:/var/run - /run:/var/run
- name: test-docker-bench - name: test-docker-bench
image: "linuxkit/test-docker-bench:4999d3484771e8466580c0dc2e479595e49faa85" image: linuxkit/test-docker-bench:4999d3484771e8466580c0dc2e479595e49faa85
ipc: host ipc: host
pid: host pid: host
net: host net: host

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,13 +7,13 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: test - name: test
image: "alpine:3.6" image: alpine:3.6
readonly: true readonly: true
binds: binds:
- /check.sh:/check.sh - /check.sh:/check.sh
command: ["sh", "./check.sh"] command: ["sh", "./check.sh"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
files: files:
- path: check.sh - path: check.sh

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,16 +7,16 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: binfmt - name: binfmt
image: "linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5" image: linuxkit/binfmt:0bde4ebd422099f45c5ee03217413523ad2223e5
- name: test - name: test
image: "alpine:3.6" image: alpine:3.6
readonly: true readonly: true
binds: binds:
- /check.sh:/check.sh - /check.sh:/check.sh
- /proc/sys/fs/binfmt_misc:/binfmt_misc - /proc/sys/fs/binfmt_misc:/binfmt_misc
command: ["sh", "./check.sh"] command: ["sh", "./check.sh"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
files: files:
- path: check.sh - path: check.sh

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,14 +8,14 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: test - name: test
image: "alpine:3.6" image: alpine:3.6
readonly: true readonly: true
binds: binds:
- /check.sh:/check.sh - /check.sh:/check.sh
- /etc:/host-etc - /etc:/host-etc
command: ["sh", "./check.sh"] command: ["sh", "./check.sh"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
files: files:
- path: check.sh - path: check.sh

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,11 +8,11 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: test - name: test
image: "linuxkit/test-containerd:b9b6046f1eb8ed8a15eb70523bc584e7da657baa" image: linuxkit/test-containerd:b9b6046f1eb8ed8a15eb70523bc584e7da657baa
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
trust: trust:
org: org:
- linuxkit - linuxkit

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,17 +7,17 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
- name: test - name: test
image: "alpine:3.6" image: alpine:3.6
readonly: true readonly: true
net: host net: host
binds: binds:
- /check.sh:/check.sh - /check.sh:/check.sh
command: ["sh", "./check.sh"] command: ["sh", "./check.sh"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
files: files:
- path: check.sh - path: check.sh

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.x" image: linuxkit/kernel:4.9.x
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -8,11 +8,11 @@ init:
- linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
onboot: onboot:
- name: dhcpcd - name: dhcpcd
image: "linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41" image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
services: services:
- name: getty - name: getty
image: "linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c" image: linuxkit/getty:5ab31289889d61a5d2ecbeea8e36ce74ac54737c
files: files:
- path: etc/getty.shadow - path: etc/getty.shadow
# sample sets password for root to "abcdefgh" (without quotes) # sample sets password for root to "abcdefgh" (without quotes)

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,9 +7,9 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: mkimage - name: mkimage
image: "linuxkit/mkimage:a63b8ee4c5de335afc32ba850e0af319b25b96c0" image: linuxkit/mkimage:a63b8ee4c5de335afc32ba850e0af319b25b96c0
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
trust: trust:
org: org:
- linuxkit - linuxkit

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,7 +7,7 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
trust: trust:
org: org:
- linuxkit - linuxkit

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0 page_poison=1" cmdline: "console=ttyS0 page_poison=1"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,9 +7,9 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: sysctl - name: sysctl
image: "linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0" image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
- name: test - name: test
image: "alpine:3.6" image: alpine:3.6
net: host net: host
pid: host pid: host
ipc: host ipc: host
@ -18,7 +18,7 @@ onboot:
- /check.sh:/check.sh - /check.sh:/check.sh
command: ["sh", "./check.sh"] command: ["sh", "./check.sh"]
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
command: ["/bin/sh", "/poweroff.sh", "10"] command: ["/bin/sh", "/poweroff.sh", "10"]
files: files:
- path: check.sh - path: check.sh

View File

@ -1,5 +1,5 @@
kernel: kernel:
image: "linuxkit/kernel:4.9.36" image: linuxkit/kernel:4.9.36
cmdline: "console=ttyS0" cmdline: "console=ttyS0"
init: init:
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083 - linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
@ -7,11 +7,11 @@ init:
- linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3 - linuxkit/containerd:c977f27c234d55b85172813b8451f67ea86be4a3
onboot: onboot:
- name: ltp - name: ltp
image: "linuxkit/test-ltp:6df23ac196332cafb9c0f8e32f328e22d612267d" image: linuxkit/test-ltp:6df23ac196332cafb9c0f8e32f328e22d612267d
binds: binds:
- /etc/ltp/baseline:/etc/ltp/baseline - /etc/ltp/baseline:/etc/ltp/baseline
- name: poweroff - name: poweroff
image: "linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05" image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05
files: files:
- path: /etc/ltp/baseline - path: /etc/ltp/baseline
contents: "100" contents: "100"

Some files were not shown because too many files have changed in this diff Show More