mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-03 12:08:23 +00:00
47 lines
1.9 KiB
YAML
47 lines
1.9 KiB
YAML
kernel:
|
|
image: linuxkit/kernel:5.10.104
|
|
cmdline: "console=tty0 console=ttyS0"
|
|
init:
|
|
- linuxkit/init:aa44b2891ae0273bd194bcf261dc75425713c034
|
|
- linuxkit/runc:d02dbf3e72632831246ca9e2bc45772e2c3c02b8
|
|
- linuxkit/containerd:4703525398adfe47764efbee8b36af79b4a6b097
|
|
- linuxkit/ca-certificates:4de36e93dc87f7ccebd20db616ed10d381911d32
|
|
onboot:
|
|
- name: sysctl
|
|
image: linuxkit/sysctl:0aa4b1141fb890d260bb1f8f43c399f2c5419b04
|
|
- name: dhcpcd
|
|
image: linuxkit/dhcpcd:2a8ed08fea442909ba10f950d458191ed3647115
|
|
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
|
- name: format
|
|
image: linuxkit/format:5161fe240e5824da04d51bcf5e00afcb0c18dc25
|
|
command: ["/usr/bin/format", "/dev/sda"]
|
|
- name: mount
|
|
image: linuxkit/mount:f671cb94a8999a65e33b3fe79f3def58e3d58b07
|
|
command: ["/usr/bin/mountie", "/dev/sda1", "/var/external"]
|
|
- name: loop
|
|
image: linuxkit/losetup:fcee8e453684d45c3c411fe8c28ecb2210158638
|
|
command: ["/usr/bin/loopy", "--create", "/var/external/storage_file"]
|
|
- name: dm-crypt
|
|
image: linuxkit/dm-crypt:526d32351c8246431be8e1a168cb514ff3c365af
|
|
command: ["/usr/bin/crypto", "crypt_loop_dev", "/dev/loop0"]
|
|
- name: mount
|
|
image: linuxkit/mount:f671cb94a8999a65e33b3fe79f3def58e3d58b07
|
|
command: ["/usr/bin/mountie", "/dev/mapper/crypt_loop_dev", "/var/secure_storage"]
|
|
- name: bbox
|
|
image: busybox
|
|
command: ["sh", "-c", "echo 'secret things' >/var/secure_storage/secrets"]
|
|
binds:
|
|
- /var:/var
|
|
services:
|
|
- name: getty
|
|
image: linuxkit/getty:4fbbfb7d2e78c8da9be51fc93b78b96685fb1809
|
|
env:
|
|
- INSECURE=true
|
|
- name: rngd
|
|
image: linuxkit/rngd:310c16ec5315bd07d4b8f5332cfa7dc5cbc7d368
|
|
files:
|
|
- path: etc/dm-crypt/key
|
|
# the below key is just to keep the example self-contained
|
|
# !!! provide a proper key for production use here !!!
|
|
contents: "abcdefghijklmnopqrstuvwxyz123456"
|