mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 09:16:29 +00:00
commit
319005e849
24
CHANGELOG.md
24
CHANGELOG.md
@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
|
||||
|
||||
## [v0.8] - 2020-05-10
|
||||
### Added
|
||||
|
||||
- Removed dependency on external `notary` and `manifest-tool` binaries for package builds
|
||||
- Risc-V support for `binfmt`
|
||||
- Support for GPT partitions
|
||||
- `metadata` package support for Digital Ocean and Hetzner as well as loading from a file
|
||||
- Support for `/sys/fs/bpf` in `init`
|
||||
- Github Actions for CI
|
||||
|
||||
### Changed
|
||||
- `alpine` base updated to 3.11
|
||||
- `containerd` updated to v1.3.4
|
||||
- `runc` updated to v1.0.0-rc9
|
||||
- `binfmt` updated to qemu 4.2
|
||||
- `node_exporter` updated to v0.18.1
|
||||
- `cadvisor` updated to v0.36.0
|
||||
- WireGuard updated to 1.0.20200319
|
||||
- Improved CDROM support and fixes to GCP and Scaleway providers in the `metadata` package
|
||||
- Improved creation of `swap` files
|
||||
- Improved RPI3 build
|
||||
|
||||
### Removed
|
||||
|
||||
## [v0.7] - 2019-04-17
|
||||
### Added
|
||||
- Reproducible `linuxkit build` for some output formats
|
||||
|
2
Makefile
2
Makefile
@ -1,4 +1,4 @@
|
||||
VERSION="v0.7+"
|
||||
VERSION="v0.8"
|
||||
GIT_COMMIT=$(shell git rev-list -1 HEAD)
|
||||
|
||||
GO_COMPILE=linuxkit/go-compile:b1446b2ba407225011f97ae1dba0f512ae7f9b84
|
||||
|
@ -23,7 +23,7 @@ spec:
|
||||
effect: NoSchedule
|
||||
- key: node-role.kubernetes.io/master
|
||||
containers:
|
||||
- image: linuxkit/open-vm-tools:3a312fca405bb749f6bd2bda96110fb2154da564
|
||||
- image: linuxkit/open-vm-tools:v0.8
|
||||
name: open-vm-tools
|
||||
resources:
|
||||
requests:
|
||||
|
@ -2,23 +2,23 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:dc5bcfa45946053145391ceabe33729c8b9507a1
|
||||
image: linuxkit/metadata:v0.8
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:d5860b5fd032ca3e755e0e3ab39c918c344d8c91
|
||||
image: linuxkit/sshd:v0.8
|
||||
binds:
|
||||
- /run/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -2,20 +2,20 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:d5860b5fd032ca3e755e0e3ab39c918c344d8c91
|
||||
image: linuxkit/sshd:v0.8
|
||||
files:
|
||||
- path: root/.ssh/authorized_keys
|
||||
source: ~/.ssh/id_rsa.pub
|
||||
|
@ -2,33 +2,33 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:697f996868d6625a78bbbefb199d7b6b6ae3533a
|
||||
image: linuxkit/sysfs:v0.8
|
||||
- name: format
|
||||
image: linuxkit/format:0b75e494eea0312f3015e6c6f7c5927620d56c96
|
||||
image: linuxkit/format:v0.8
|
||||
- name: mount
|
||||
image: linuxkit/mount:19fa297189166206ac97261679c3e31fb140d48f
|
||||
image: linuxkit/mount:v0.8
|
||||
command: ["/usr/bin/mountie", "/var/lib/docker"]
|
||||
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:9b33f59f6d66c0f5027754a75e52f972e11882c1
|
||||
image: linuxkit/openntpd:v0.8
|
||||
|
||||
- name: docker
|
||||
image: docker:19.03.8-dind
|
||||
@ -46,7 +46,7 @@ services:
|
||||
- /etc/docker/daemon.json:/etc/docker/daemon.json
|
||||
command: ["/usr/local/bin/docker-init", "/usr/local/bin/dockerd"]
|
||||
- name: cadvisor
|
||||
image: linuxkit/cadvisor:07bf2e8e6ec05dc0644f1a974df1ce465d028b59
|
||||
image: linuxkit/cadvisor:v0.8
|
||||
files:
|
||||
- path: var/lib/docker
|
||||
directory: true
|
||||
|
@ -2,30 +2,30 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:0b75e494eea0312f3015e6c6f7c5927620d56c96
|
||||
image: linuxkit/format:v0.8
|
||||
command: ["/usr/bin/format", "/dev/sda"]
|
||||
- name: mount
|
||||
image: linuxkit/mount:19fa297189166206ac97261679c3e31fb140d48f
|
||||
image: linuxkit/mount:v0.8
|
||||
command: ["/usr/bin/mountie", "/dev/sda1", "/var/external"]
|
||||
- name: loop
|
||||
image: linuxkit/losetup:0730b61ac5c8803ba73318c2dd5121dc15cfbf34
|
||||
image: linuxkit/losetup:v0.8
|
||||
command: ["/usr/bin/loopy", "--create", "/var/external/storage_file"]
|
||||
- name: dm-crypt
|
||||
image: linuxkit/dm-crypt:0ea63bfd97b719d185b69994b4856d97fbc8a2dd
|
||||
image: linuxkit/dm-crypt:v0.8
|
||||
command: ["/usr/bin/crypto", "crypt_loop_dev", "/dev/loop0"]
|
||||
- name: mount
|
||||
image: linuxkit/mount:19fa297189166206ac97261679c3e31fb140d48f
|
||||
image: linuxkit/mount:v0.8
|
||||
command: ["/usr/bin/mountie", "/dev/mapper/crypt_loop_dev", "/var/secure_storage"]
|
||||
- name: bbox
|
||||
image: busybox
|
||||
@ -34,11 +34,11 @@ onboot:
|
||||
- /var:/var
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
files:
|
||||
- path: etc/dm-crypt/key
|
||||
# the below key is just to keep the example self-contained
|
||||
|
@ -2,24 +2,24 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:0b75e494eea0312f3015e6c6f7c5927620d56c96
|
||||
image: linuxkit/format:v0.8
|
||||
command: ["/usr/bin/format", "/dev/sda"]
|
||||
- name: dm-crypt
|
||||
image: linuxkit/dm-crypt:0ea63bfd97b719d185b69994b4856d97fbc8a2dd
|
||||
image: linuxkit/dm-crypt:v0.8
|
||||
command: ["/usr/bin/crypto", "crypt_dev", "/dev/sda1"]
|
||||
- name: mount
|
||||
image: linuxkit/mount:19fa297189166206ac97261679c3e31fb140d48f
|
||||
image: linuxkit/mount:v0.8
|
||||
command: ["/usr/bin/mountie", "/dev/mapper/crypt_dev", "/var/secure_storage"]
|
||||
- name: bbox
|
||||
image: busybox
|
||||
@ -28,11 +28,11 @@ onboot:
|
||||
- /var:/var
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
files:
|
||||
- path: etc/dm-crypt/key
|
||||
# the below key is just to keep the example self-contained
|
||||
|
@ -3,30 +3,30 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/vpnkit-expose-port:3fd88b7025065843792484b1ad83ddd5c4b28684 # install vpnkit-expose-port and vpnkit-iptables-wrapper on host
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/vpnkit-expose-port:v0.8 # install vpnkit-expose-port and vpnkit-iptables-wrapper on host
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
# support metadata for optional config in /run/config
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:dc5bcfa45946053145391ceabe33729c8b9507a1
|
||||
image: linuxkit/metadata:v0.8
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:697f996868d6625a78bbbefb199d7b6b6ae3533a
|
||||
image: linuxkit/sysfs:v0.8
|
||||
- name: binfmt
|
||||
image: linuxkit/binfmt:5d33e7346e79f9c13a73c6952669e47a53b063d4
|
||||
image: linuxkit/binfmt:v0.8
|
||||
# Format and mount the disk image in /var/lib/docker
|
||||
- name: format
|
||||
image: linuxkit/format:0b75e494eea0312f3015e6c6f7c5927620d56c96
|
||||
image: linuxkit/format:v0.8
|
||||
- name: mount
|
||||
image: linuxkit/mount:19fa297189166206ac97261679c3e31fb140d48f
|
||||
image: linuxkit/mount:v0.8
|
||||
command: ["/usr/bin/mountie", "/var/lib"]
|
||||
# make a swap file on the mounted disk
|
||||
- name: swap
|
||||
image: linuxkit/swap:2cf5c3f08c4b238bb5fe231fd59ce19faee0fbc6
|
||||
image: linuxkit/swap:v0.8
|
||||
command: ["/swap.sh", "--path", "/var/lib/swap", "--size", "1024M"]
|
||||
# mount-vpnkit mounts the 9p share used by vpnkit to coordinate port forwarding
|
||||
- name: mount-vpnkit
|
||||
@ -44,41 +44,41 @@ onboot:
|
||||
- /var:/host_var
|
||||
command: ["sh", "-c", "mv -v /host_var/log /host_var/lib && ln -vs /var/lib/log /host_var/log"]
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
# Enable acpi to shutdown on power events
|
||||
- name: acpid
|
||||
image: linuxkit/acpid:d5692a8c9d7cfceb7922acb8e356928c920bc280
|
||||
image: linuxkit/acpid:v0.8
|
||||
# Enable getty for easier debugging
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
# Run ntpd to keep time synchronised in the VM
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:9b33f59f6d66c0f5027754a75e52f972e11882c1
|
||||
image: linuxkit/openntpd:v0.8
|
||||
# VSOCK to unix domain socket forwarding. Forwards guest /var/run/docker.sock
|
||||
# to a socket on the host.
|
||||
- name: vsudd
|
||||
image: linuxkit/vsudd:0366cd7fb47398de85b176f3b0420355cda235fa
|
||||
image: linuxkit/vsudd:v0.8
|
||||
binds:
|
||||
- /var/run:/var/run
|
||||
command: ["/vsudd", "-inport", "2376:unix:/var/run/docker.sock"]
|
||||
# vpnkit-forwarder forwards network traffic to/from the host via VSOCK port 62373.
|
||||
# It needs access to the vpnkit 9P coordination share
|
||||
- name: vpnkit-forwarder
|
||||
image: linuxkit/vpnkit-forwarder:e0964f3c34f92f7e7ff7b13e360d57559c64581c
|
||||
image: linuxkit/vpnkit-forwarder:v0.8
|
||||
binds:
|
||||
- /var/vpnkit:/port
|
||||
net: host
|
||||
command: ["/vpnkit-forwarder", "-vsockPort", "62373"]
|
||||
# Monitor for image deletes and invoke a TRIM on the container filesystem
|
||||
- name: trim-after-delete
|
||||
image: linuxkit/trim-after-delete:f5a83f55b1bc24d61bca4891d997bca33474945d
|
||||
image: linuxkit/trim-after-delete:v0.8
|
||||
# When the host resumes from sleep, force a clock resync
|
||||
- name: host-timesync-daemon
|
||||
image: linuxkit/host-timesync-daemon:8625ccdbda099c94b9635acd167e8f0e2f9c6318
|
||||
image: linuxkit/host-timesync-daemon:v0.8
|
||||
# Run dockerd with the vpnkit userland proxy from the vpnkit-forwarder container.
|
||||
# Bind mounts /var/run to allow vsudd to connect to docker.sock, /var/vpnkit
|
||||
# for vpnkit coordination and /run/config/docker for the configuration file.
|
||||
|
@ -2,31 +2,31 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:697f996868d6625a78bbbefb199d7b6b6ae3533a
|
||||
image: linuxkit/sysfs:v0.8
|
||||
- name: format
|
||||
image: linuxkit/format:0b75e494eea0312f3015e6c6f7c5927620d56c96
|
||||
image: linuxkit/format:v0.8
|
||||
- name: mount
|
||||
image: linuxkit/mount:19fa297189166206ac97261679c3e31fb140d48f
|
||||
image: linuxkit/mount:v0.8
|
||||
command: ["/usr/bin/mountie", "/var/lib/docker"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:9b33f59f6d66c0f5027754a75e52f972e11882c1
|
||||
image: linuxkit/openntpd:v0.8
|
||||
- name: docker
|
||||
image: docker:19.03.8-dind
|
||||
capabilities:
|
||||
|
@ -2,27 +2,27 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:dc5bcfa45946053145391ceabe33729c8b9507a1
|
||||
image: linuxkit/metadata:v0.8
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:d5860b5fd032ca3e755e0e3ab39c918c344d8c91
|
||||
image: linuxkit/sshd:v0.8
|
||||
binds:
|
||||
- /run/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -2,24 +2,24 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
# to make insecure with passwordless root login, uncomment following lines
|
||||
#env:
|
||||
# - INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
files:
|
||||
- path: etc/getty.shadow
|
||||
# sample sets password for root to "abcdefgh" (without quotes)
|
||||
|
@ -3,32 +3,32 @@ kernel:
|
||||
cmdline: console=ttyS1
|
||||
ucode: intel-ucode.cpio
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/firmware:2b5688289ec6708e41a20a10aa4b5a05d4b331f6
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
- linuxkit/firmware:v0.8
|
||||
onboot:
|
||||
- name: rngd1
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
command: ["/sbin/rngd", "-1"]
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:dc5bcfa45946053145391ceabe33729c8b9507a1
|
||||
image: linuxkit/metadata:v0.8
|
||||
command: ["/usr/bin/metadata", "hetzner"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:d5860b5fd032ca3e755e0e3ab39c918c344d8c91
|
||||
image: linuxkit/sshd:v0.8
|
||||
files:
|
||||
- path: root/.ssh/authorized_keys
|
||||
source: ~/.ssh/id_rsa.pub
|
||||
|
@ -2,15 +2,15 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
onshutdown:
|
||||
- name: shutdown
|
||||
@ -18,7 +18,7 @@ onshutdown:
|
||||
command: ["/bin/echo", "so long and thanks for all the fish"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
runtime:
|
||||
@ -30,7 +30,7 @@ services:
|
||||
destination: writeable-host-etc
|
||||
options: ["rw", "lowerdir=/etc", "upperdir=/run/hostetc/upper", "workdir=/run/hostetc/work"]
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: nginx
|
||||
image: nginx:1.13.8-alpine
|
||||
capabilities:
|
||||
|
@ -2,17 +2,17 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: influxdb
|
||||
|
@ -3,21 +3,21 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/memlogd:ddfd99754f0cfc63a675f49aa32a8f2c92785551
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
- linuxkit/memlogd:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
# Inside the getty type `/proc/1/root/usr/bin/logread -F` to follow the log
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
# A service which generates log messages for testing
|
||||
@ -25,9 +25,9 @@ services:
|
||||
image: alpine:3.11
|
||||
command: ["/bin/sh", "-c", "while /bin/true; do echo hello $(date); sleep 1; done" ]
|
||||
- name: write-and-rotate-logs
|
||||
image: linuxkit/logwrite:0031a6ee2be4c842ce40246f93e5059048b367aa
|
||||
image: linuxkit/logwrite:v0.8
|
||||
- name: kmsg
|
||||
image: linuxkit/kmsg:ea49dddf9275b10188ba45f57cb7c9c561db4758
|
||||
image: linuxkit/kmsg:v0.8
|
||||
trust:
|
||||
org:
|
||||
- linuxkit
|
||||
|
@ -2,16 +2,16 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
trust:
|
||||
|
@ -2,20 +2,20 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
- name: node_exporter
|
||||
image: linuxkit/node_exporter:1d5694bb1b148368d53945d22944289a2127d69c
|
||||
image: linuxkit/node_exporter:v0.8
|
||||
trust:
|
||||
org:
|
||||
- linuxkit
|
||||
|
@ -2,24 +2,24 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:dc5bcfa45946053145391ceabe33729c8b9507a1
|
||||
image: linuxkit/metadata:v0.8
|
||||
command: ["/usr/bin/metadata", "openstack"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:d5860b5fd032ca3e755e0e3ab39c918c344d8c91
|
||||
image: linuxkit/sshd:v0.8
|
||||
binds:
|
||||
- /run/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -10,5 +10,5 @@ kernel:
|
||||
ucode: ""
|
||||
onboot:
|
||||
- name: modprobe
|
||||
image: linuxkit/modprobe:944769462b9d10b1b1506498d3eb03dcc5416f7f
|
||||
image: linuxkit/modprobe:v0.8
|
||||
command: ["modprobe", "nicvf"]
|
||||
|
@ -3,32 +3,32 @@ kernel:
|
||||
cmdline: console=ttyS1
|
||||
ucode: intel-ucode.cpio
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/firmware:2b5688289ec6708e41a20a10aa4b5a05d4b331f6
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
- linuxkit/firmware:v0.8
|
||||
onboot:
|
||||
- name: rngd1
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
command: ["/sbin/rngd", "-1"]
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:dc5bcfa45946053145391ceabe33729c8b9507a1
|
||||
image: linuxkit/metadata:v0.8
|
||||
command: ["/usr/bin/metadata", "packet"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:d5860b5fd032ca3e755e0e3ab39c918c344d8c91
|
||||
image: linuxkit/sshd:v0.8
|
||||
files:
|
||||
- path: root/.ssh/authorized_keys
|
||||
source: ~/.ssh/id_rsa.pub
|
||||
|
@ -4,16 +4,16 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
# Currently redis:4.0.6-alpine has trust issue with multi-arch
|
||||
|
@ -2,24 +2,24 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.28-rt
|
||||
cmdline: "console=tty0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
- name: open-vm-tools
|
||||
image: linuxkit/open-vm-tools:3a312fca405bb749f6bd2bda96110fb2154da564
|
||||
image: linuxkit/open-vm-tools:v0.8
|
||||
- name: nginx
|
||||
image: nginx:1.13.8-alpine
|
||||
capabilities:
|
||||
|
@ -2,28 +2,28 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0 root=/dev/vda"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: rngd1
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
command: ["/sbin/rngd", "-1"]
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:dc5bcfa45946053145391ceabe33729c8b9507a1
|
||||
image: linuxkit/metadata:v0.8
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
trust:
|
||||
org:
|
||||
- linuxkit
|
||||
|
@ -2,27 +2,27 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: rngd1
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
command: ["/sbin/rngd", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:d5860b5fd032ca3e755e0e3ab39c918c344d8c91
|
||||
image: linuxkit/sshd:v0.8
|
||||
files:
|
||||
- path: root/.ssh/authorized_keys
|
||||
source: ~/.ssh/id_rsa.pub
|
||||
|
@ -2,18 +2,18 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
onboot:
|
||||
- name: ip
|
||||
image: linuxkit/ip:22f0b3be72f25adb8a38aa67c075d59da49d20f2
|
||||
image: linuxkit/ip:v0.8
|
||||
binds:
|
||||
- /etc/ip:/etc/ip
|
||||
command: ["ip", "-b", "/etc/ip/eth0.conf"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
files:
|
||||
|
@ -2,33 +2,33 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:0b75e494eea0312f3015e6c6f7c5927620d56c96
|
||||
image: linuxkit/format:v0.8
|
||||
- name: mount
|
||||
image: linuxkit/mount:19fa297189166206ac97261679c3e31fb140d48f
|
||||
image: linuxkit/mount:v0.8
|
||||
command: ["/usr/bin/mountie", "/var/external"]
|
||||
- name: swap
|
||||
image: linuxkit/swap:2cf5c3f08c4b238bb5fe231fd59ce19faee0fbc6
|
||||
image: linuxkit/swap:v0.8
|
||||
# to use unencrypted swap, use:
|
||||
# command: ["/swap.sh", "--path", "/var/external/swap", "--size", "1G"]
|
||||
command: ["/swap.sh", "--path", "/var/external/swap", "--size", "1G", "--encrypt"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
trust:
|
||||
org:
|
||||
- linuxkit
|
||||
|
@ -2,25 +2,25 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: tss
|
||||
image: linuxkit/tss:734902b23bc9a7a5e36cce4bd9742a66d37f0a9a
|
||||
image: linuxkit/tss:v0.8
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
files:
|
||||
- path: etc/getty.shadow
|
||||
# sample sets password for root to "abcdefgh" (without quotes)
|
||||
|
@ -2,22 +2,22 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
- name: nginx
|
||||
image: nginx:1.13.8-alpine
|
||||
capabilities:
|
||||
|
@ -2,12 +2,12 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: mount-vpnkit
|
||||
image: alpine:3.11
|
||||
@ -19,9 +19,9 @@ 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"]
|
||||
services:
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:d5860b5fd032ca3e755e0e3ab39c918c344d8c91
|
||||
image: linuxkit/sshd:v0.8
|
||||
- name: vpnkit-forwarder
|
||||
image: linuxkit/vpnkit-forwarder:e0964f3c34f92f7e7ff7b13e360d57559c64581c
|
||||
image: linuxkit/vpnkit-forwarder:v0.8
|
||||
binds:
|
||||
- /var/vpnkit:/port
|
||||
net: host
|
||||
|
@ -2,16 +2,16 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: vsudd
|
||||
image: linuxkit/vsudd:0366cd7fb47398de85b176f3b0420355cda235fa
|
||||
image: linuxkit/vsudd:v0.8
|
||||
binds:
|
||||
- /run/containerd/containerd.sock:/run/containerd/containerd.sock
|
||||
command: ["/vsudd",
|
||||
|
@ -2,28 +2,28 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:dc5bcfa45946053145391ceabe33729c8b9507a1
|
||||
image: linuxkit/metadata:v0.8
|
||||
command: ["/usr/bin/metadata", "vultr"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:d5860b5fd032ca3e755e0e3ab39c918c344d8c91
|
||||
image: linuxkit/sshd:v0.8
|
||||
binds:
|
||||
- /run/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -2,18 +2,18 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: wg0
|
||||
image: linuxkit/ip:22f0b3be72f25adb8a38aa67c075d59da49d20f2
|
||||
image: linuxkit/ip:v0.8
|
||||
net: new
|
||||
binds:
|
||||
- /etc/wireguard:/etc/wireguard
|
||||
@ -26,7 +26,7 @@ onboot:
|
||||
bindNS:
|
||||
net: /run/netns/wg0
|
||||
- name: wg1
|
||||
image: linuxkit/ip:22f0b3be72f25adb8a38aa67c075d59da49d20f2
|
||||
image: linuxkit/ip:v0.8
|
||||
net: new
|
||||
binds:
|
||||
- /etc/wireguard:/etc/wireguard
|
||||
@ -40,12 +40,12 @@ onboot:
|
||||
net: /run/netns/wg1
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
net: /run/netns/wg1
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: nginx
|
||||
image: nginx:1.13.8-alpine
|
||||
net: /run/netns/wg0
|
||||
|
16
linuxkit.yml
16
linuxkit.yml
@ -2,15 +2,15 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
onshutdown:
|
||||
- name: shutdown
|
||||
@ -18,11 +18,11 @@ onshutdown:
|
||||
command: ["/bin/echo", "so long and thanks for all the fish"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: nginx
|
||||
image: nginx:1.13.8-alpine
|
||||
capabilities:
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
@ -6,7 +6,7 @@ RUN apk add --no-cache --initdb -p /out \
|
||||
busybox
|
||||
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache
|
||||
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror2
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror2
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
busybox-initscripts
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --initdb -p /out alpine-baselayout apk-tools audit busybox tini
|
||||
|
@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y qemu-user-static && \
|
||||
mv /usr/bin/qemu-riscv64-static /usr/bin/qemu-riscv64 && \
|
||||
rm /usr/bin/qemu-*-static
|
||||
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
RUN apk add --update \
|
||||
bison \
|
||||
build-base \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 as alpine
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 as alpine
|
||||
|
||||
RUN apk add ca-certificates
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 as build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 as build
|
||||
|
||||
RUN apk add --no-cache bash go git musl-dev linux-headers make
|
||||
# Hack to work around an issue with go on arm64 requiring gcc
|
||||
@ -18,7 +18,7 @@ RUN go get -d ${GITREPO} \
|
||||
&& mv cadvisor /usr/bin/
|
||||
|
||||
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
alpine-baselayout \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
alpine-baselayout \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
@ -15,7 +15,7 @@ RUN apk add --no-cache --initdb -p /out \
|
||||
&& true
|
||||
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache
|
||||
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
RUN apk add --no-cache git
|
||||
|
||||
# Make sure you also update the FW_COMMIT in ../firmware/Dockerfile
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Make modules from a recentish kernel available
|
||||
FROM linuxkit/kernel:5.4.28 AS kernel
|
||||
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
RUN apk add --no-cache git kmod
|
||||
|
||||
# Clone the firmware repository
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
@ -15,7 +15,7 @@ RUN apk add --no-cache --initdb -p /out \
|
||||
&& true
|
||||
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache
|
||||
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev git
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add curl
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev linux-headers
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
alpine-baselayout \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev linux-headers
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
@ -9,7 +9,7 @@ RUN apk add --no-cache --initdb -p /out \
|
||||
&& true
|
||||
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache
|
||||
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 as build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 as build
|
||||
|
||||
RUN apk add --no-cache go git musl-dev make curl gcc
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
alpine-baselayout \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN mkdir -p /out/var/run
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN apk add --no-cache go gcc musl-dev linux-headers
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 as alpine
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 as alpine
|
||||
RUN \
|
||||
apk add \
|
||||
bash \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,5 +1,5 @@
|
||||
# We need the `fstrim` binary:
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
alpine-baselayout \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
|
||||
ENV TROUSERS_COMMIT de57f069ef2297d6a6b3a0353e217a5a2f66e444
|
||||
ENV TPM_TOOLS_COMMIT bdf9f1bc8f63cd6fc370c2deb58d03ac55079e84
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS build
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev git build-base
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev git build-base
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:bc528cf9d4065d2e09aa44ff76909b94cfe8d867 AS mirror
|
||||
FROM linuxkit/alpine:e2391e0b164c57db9f6c4ae110ee84f766edc430 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev git build-base
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -2,7 +2,7 @@ kernel:
|
||||
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"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/init:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: mobylinux/sysctl:2cf2f9d5b4d314ba1bfc22b2fe931924af666d8c
|
||||
|
@ -2,32 +2,32 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:697f996868d6625a78bbbefb199d7b6b6ae3533a
|
||||
image: linuxkit/sysfs:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:0b75e494eea0312f3015e6c6f7c5927620d56c96
|
||||
image: linuxkit/format:v0.8
|
||||
- name: mount
|
||||
image: linuxkit/mount:19fa297189166206ac97261679c3e31fb140d48f
|
||||
image: linuxkit/mount:v0.8
|
||||
command: ["/usr/bin/mountie", "/var/lib/docker"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:9b33f59f6d66c0f5027754a75e52f972e11882c1
|
||||
image: linuxkit/openntpd:v0.8
|
||||
- name: docker
|
||||
image: docker:19.03.8-dind
|
||||
capabilities:
|
||||
|
@ -2,32 +2,32 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:697f996868d6625a78bbbefb199d7b6b6ae3533a
|
||||
image: linuxkit/sysfs:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:0b75e494eea0312f3015e6c6f7c5927620d56c96
|
||||
image: linuxkit/format:v0.8
|
||||
- name: mount
|
||||
image: linuxkit/mount:19fa297189166206ac97261679c3e31fb140d48f
|
||||
image: linuxkit/mount:v0.8
|
||||
command: ["/usr/bin/mountie", "/var/lib/docker"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:9b33f59f6d66c0f5027754a75e52f972e11882c1
|
||||
image: linuxkit/openntpd:v0.8
|
||||
- name: docker
|
||||
image: docker:19.03.8-dind
|
||||
capabilities:
|
||||
|
@ -2,20 +2,20 @@ kernel:
|
||||
image: linuxkit/kernel-ima:4.11.1-186dd3605ee7b23214850142f8f02b4679dbd148
|
||||
cmdline: "console=ttyS0 console=tty0 page_poison=1 ima_appraise=enforce_ns"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
- linuxkit/ima-utils:dfeb3896fd29308b80ff9ba7fe5b8b767e40ca29
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: nginx
|
||||
image: nginx:1.13.8-alpine
|
||||
capabilities:
|
||||
|
@ -2,7 +2,7 @@ kernel:
|
||||
image: mobylinux/kernel-landlock:4.9.x
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/init:v0.8
|
||||
- mobylinux/runc:b0fb122e10dbb7e4e45115177a61a3f8d68c19a9
|
||||
- mobylinux/containerd:18eaf72f3f4f9a9f29ca1951f66df701f873060b
|
||||
- mobylinux/ca-certificates:eabc5a6e59f05aa91529d80e9a595b85b046f935
|
||||
|
@ -2,16 +2,16 @@ kernel:
|
||||
image: "linuxkitprojects/kernel-memorizer:4.10_dbg"
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
trust:
|
||||
|
@ -2,23 +2,23 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.34
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
- samoht/fdd
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
files:
|
||||
- path: etc/init.d/020-fdd-init
|
||||
mode: "0700"
|
||||
|
@ -2,12 +2,12 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcp-client
|
||||
image: miragesdk/dhcp-client:22aa9d527820534295a8cd59901c0c5197af6585
|
||||
net: host
|
||||
@ -28,9 +28,9 @@ onboot:
|
||||
- /lib:/lib # for ifconfig
|
||||
services:
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:d5860b5fd032ca3e755e0e3ab39c918c344d8c91
|
||||
image: linuxkit/sshd:v0.8
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
files:
|
||||
|
@ -2,18 +2,18 @@ kernel:
|
||||
image: okernel:latest
|
||||
cmdline: "console=tty0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
services:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
trust:
|
||||
|
@ -2,23 +2,23 @@ kernel:
|
||||
image: linuxkitprojects/kernel-shiftfs:4.11.4-881a041fc14bd95814cf140b5e98d97dd65160b5
|
||||
cmdline: "console=ttyS0 console=tty0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/ca-certificates:abfc6701b9ca17e34ac9439ce5946a247e720ff5
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
- linuxkit/ca-certificates:v0.8
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:541f60fe3676611328e89e8bac251fc636b1a6aa
|
||||
image: linuxkit/sysctl:v0.8
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:48f66df198981e692084bf70ab72b9fe2be0f880
|
||||
image: linuxkit/getty:v0.8
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:7fab61cca793113280397dcee8159f35dc37adcb
|
||||
image: linuxkit/rngd:v0.8
|
||||
- name: nginx
|
||||
image: nginx:1.13.8-alpine
|
||||
capabilities:
|
||||
|
@ -17,11 +17,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: mkimage
|
||||
image: linuxkit/mkimage:cad5659e03d5e6d81c26bb0a9724cc626dee57b4
|
||||
image: linuxkit/mkimage:v0.8
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
trust:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -3,13 +3,13 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:2f8a9b670aa6e96a09db56ec45c9f07ef2a811ee
|
||||
image: linuxkit/dhcpcd:v0.8
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
# Add some random unsorted caps
|
||||
capabilities:
|
||||
@ -18,7 +18,7 @@ onboot:
|
||||
|
||||
services:
|
||||
- name: testservice
|
||||
image: linuxkit/ip:22f0b3be72f25adb8a38aa67c075d59da49d20f2
|
||||
image: linuxkit/ip:v0.8
|
||||
# Some environments
|
||||
env:
|
||||
- BENV=true
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,12 +2,12 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/containerd:6ef473a228db6f6ee163f9b9a051102a1552a4ef
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
- linuxkit/containerd:v0.8
|
||||
services:
|
||||
- name: acpid
|
||||
image: linuxkit/acpid:d5692a8c9d7cfceb7922acb8e356928c920bc280
|
||||
image: linuxkit/acpid:v0.8
|
||||
trust:
|
||||
org:
|
||||
- linuxkit
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:06dd4e46c62fbe79123a028835c921f80e4855d3
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:4.14.179
|
||||
cmdline: "console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: check-kernel-config
|
||||
image: linuxkit/test-kernel-config:fabda492c6efc9e34b9f994b09d03ffc0facd8d8
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:4.19.121
|
||||
cmdline: "console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: check-kernel-config
|
||||
image: linuxkit/test-kernel-config:fabda492c6efc9e34b9f994b09d03ffc0facd8d8
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:5.4.39
|
||||
cmdline: "console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:e93b0bf37b030238d33e04b98e90d087637f3d2c
|
||||
- linuxkit/runc:f79954950022fea76b8b6f10de58cb48e4fb3878
|
||||
- linuxkit/init:v0.8
|
||||
- linuxkit/runc:v0.8
|
||||
onboot:
|
||||
- name: check-kernel-config
|
||||
image: linuxkit/test-kernel-config:fabda492c6efc9e34b9f994b09d03ffc0facd8d8
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user