mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-21 18:11:35 +00:00
commit
dd7979e4aa
2
Makefile
2
Makefile
@ -7,7 +7,7 @@ all: default
|
||||
VERSION="0.0" # dummy for now
|
||||
GIT_COMMIT=$(shell git rev-list -1 HEAD)
|
||||
|
||||
GO_COMPILE=linuxkit/go-compile:fb53f01a669de5e91ec855b4f67a57b514b4f6ed
|
||||
GO_COMPILE=linuxkit/go-compile:bb0c6ae2f12a1b55df24ebce2067784a931285df
|
||||
|
||||
LINUXKIT?=bin/linuxkit
|
||||
GOOS?=$(shell uname -s | tr '[:upper:]' '[:lower:]')
|
||||
|
@ -3,30 +3,30 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/vpnkit-expose-port:15c56c57ac9a7adeec20b34f36f2bc165c347679 # install vpnkit-expose-port and vpnkit-iptables-wrapper on host
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/vpnkit-expose-port:728e5fe9e6b818d9825b28826b929ae75a386e9e # install vpnkit-expose-port and vpnkit-iptables-wrapper on host
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
# support metadata for optional config in /var/config
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:026aca5c08c22589a7e319f79449bef2c65f04c5
|
||||
image: linuxkit/metadata:2af15c9f4b0e73515c219b7cc14e6e65e1d4fd6d
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:5367b46211882278b84a9e8048855ca5df65beda
|
||||
image: linuxkit/sysfs:1284b4a7061a5cc426425f0fb00748192505a05f
|
||||
- name: binfmt
|
||||
image: linuxkit/binfmt:742781d22fe851e7a1c589fc8d1cf3bd4e264b22
|
||||
image: linuxkit/binfmt:4b1d7a8dab03c09855fb4b6060a42b2294674b47
|
||||
# Format and mount the disk image in /var/lib/docker
|
||||
- name: format
|
||||
image: linuxkit/format:6b46d0450082f397177da36be6b4d74d93eacd1e
|
||||
image: linuxkit/format:e945016ec780a788a71dcddc81497d54d3b14bc7
|
||||
- name: mount
|
||||
image: linuxkit/mount:41685ecc8039643948e5dff46e17584753469a7a
|
||||
image: linuxkit/mount:b346ec277b7074e5c9986128a879c10a1d18742b
|
||||
command: ["/usr/bin/mountie", "/var/lib"]
|
||||
# make a swap file on the mounted disk
|
||||
- name: swap
|
||||
image: linuxkit/swap:25a2f13110585f3d964a8191fa3a84de51dbb8fd
|
||||
image: linuxkit/swap:b3d5db11b14168874a01b5ea4398186321be836f
|
||||
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:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
# Enable acpi to shutdown on power events
|
||||
- name: acpid
|
||||
image: linuxkit/acpid:168f871c7211c9d5e96002d53cb497b26e2d622b
|
||||
image: linuxkit/acpid:fa37afe931844fb834e1906ec244d13b031741b9
|
||||
# Enable getty for easier debugging
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
# Run ntpd to keep time synchronised in the VM
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:07a80c3e3e816658318ac027e1253ff9a228b8de
|
||||
image: linuxkit/openntpd:536e5947607c9e6a6771957c2ff817230cba0d3c
|
||||
# VSOCK to unix domain socket forwarding. Forwards guest /var/run/docker.sock
|
||||
# to a socket on the host.
|
||||
- name: vsudd
|
||||
image: linuxkit/vsudd:26f6a75d35f05b6bbd7d9a2d67c843b7003b3e05
|
||||
image: linuxkit/vsudd:e4e8de4d4fae94e851fbf3d5a0455d766747ac2b
|
||||
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:c7e61d9250de0b21455dc5c8bb885bd8faa31621
|
||||
image: linuxkit/vpnkit-forwarder:89b97912eb8eb14acbf9f6304a92aa366e59d49e
|
||||
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:9ae85973d9f2516a75ff855705ddf513c031c425
|
||||
image: linuxkit/trim-after-delete:5dad8b705f9c0ab2bb7e43a8cada06f3422feb54
|
||||
# When the host resumes from sleep, force a clock resync
|
||||
- name: host-timesync-daemon
|
||||
image: linuxkit/host-timesync-daemon:2423a4014d9425a7f9820a85db808686cfa48e4a
|
||||
image: linuxkit/host-timesync-daemon:085e1910de6f311f96a823eaa10ffd6d92ec9679
|
||||
|
||||
trust:
|
||||
org:
|
||||
|
@ -22,7 +22,7 @@ docker run -it --rm \
|
||||
-v $(pwd):/go/src/github.com/linuxkit/linuxkit \
|
||||
-w /go/src/github.com/linuxkit/linuxkit/src/cmd/linuxkit \
|
||||
--entrypoint /go/bin/vndr \
|
||||
linuxkit/go-compile:fb53f01a669de5e91ec855b4f67a57b514b4f6ed
|
||||
linuxkit/go-compile:bb0c6ae2f12a1b55df24ebce2067784a931285df
|
||||
```
|
||||
|
||||
To update a single dependency:
|
||||
@ -32,7 +32,7 @@ docker run -it --rm \
|
||||
-v $(pwd):/go/src/github.com/linuxkit/linuxkit \
|
||||
-w /go/src/github.com/linuxkit/linuxkit/src/cmd/linuxkit \
|
||||
--entrypoint /go/bin/vndr \
|
||||
linuxkit/go-compile:fb53f01a669de5e91ec855b4f67a57b514b4f6ed
|
||||
linuxkit/go-compile:bb0c6ae2f12a1b55df24ebce2067784a931285df
|
||||
github.com/docker/docker
|
||||
```
|
||||
|
||||
|
@ -2,23 +2,23 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:026aca5c08c22589a7e319f79449bef2c65f04c5
|
||||
image: linuxkit/metadata:2af15c9f4b0e73515c219b7cc14e6e65e1d4fd6d
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:b7f21ef1b13300a994e35eac3644e4f84f0ada8a
|
||||
image: linuxkit/sshd:ac5e8364e2e9aa8717a3295c51eb60b8c57373d5
|
||||
binds:
|
||||
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -2,20 +2,20 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:b7f21ef1b13300a994e35eac3644e4f84f0ada8a
|
||||
image: linuxkit/sshd:ac5e8364e2e9aa8717a3295c51eb60b8c57373d5
|
||||
files:
|
||||
- path: root/.ssh/authorized_keys
|
||||
source: ~/.ssh/id_rsa.pub
|
||||
|
@ -2,33 +2,33 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:5367b46211882278b84a9e8048855ca5df65beda
|
||||
image: linuxkit/sysfs:1284b4a7061a5cc426425f0fb00748192505a05f
|
||||
- name: format
|
||||
image: linuxkit/format:6b46d0450082f397177da36be6b4d74d93eacd1e
|
||||
image: linuxkit/format:e945016ec780a788a71dcddc81497d54d3b14bc7
|
||||
- name: mount
|
||||
image: linuxkit/mount:41685ecc8039643948e5dff46e17584753469a7a
|
||||
image: linuxkit/mount:b346ec277b7074e5c9986128a879c10a1d18742b
|
||||
command: ["/usr/bin/mountie", "/var/lib/docker"]
|
||||
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:07a80c3e3e816658318ac027e1253ff9a228b8de
|
||||
image: linuxkit/openntpd:536e5947607c9e6a6771957c2ff817230cba0d3c
|
||||
|
||||
- name: docker
|
||||
image: docker:17.10.0-ce-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:42264edeebe7f76272ff691854ec592b7e5ae536
|
||||
image: linuxkit/cadvisor:237437faf7cd3395165393227d2c37640a848c2f
|
||||
files:
|
||||
- path: var/lib/docker
|
||||
directory: true
|
||||
|
@ -2,31 +2,31 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:5367b46211882278b84a9e8048855ca5df65beda
|
||||
image: linuxkit/sysfs:1284b4a7061a5cc426425f0fb00748192505a05f
|
||||
- name: format
|
||||
image: linuxkit/format:6b46d0450082f397177da36be6b4d74d93eacd1e
|
||||
image: linuxkit/format:e945016ec780a788a71dcddc81497d54d3b14bc7
|
||||
- name: mount
|
||||
image: linuxkit/mount:41685ecc8039643948e5dff46e17584753469a7a
|
||||
image: linuxkit/mount:b346ec277b7074e5c9986128a879c10a1d18742b
|
||||
command: ["/usr/bin/mountie", "/var/lib/docker"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:07a80c3e3e816658318ac027e1253ff9a228b8de
|
||||
image: linuxkit/openntpd:536e5947607c9e6a6771957c2ff817230cba0d3c
|
||||
- name: docker
|
||||
image: docker:17.07.0-ce-dind
|
||||
capabilities:
|
||||
|
@ -2,27 +2,27 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:026aca5c08c22589a7e319f79449bef2c65f04c5
|
||||
image: linuxkit/metadata:2af15c9f4b0e73515c219b7cc14e6e65e1d4fd6d
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:b7f21ef1b13300a994e35eac3644e4f84f0ada8a
|
||||
image: linuxkit/sshd:ac5e8364e2e9aa8717a3295c51eb60b8c57373d5
|
||||
binds:
|
||||
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -2,24 +2,24 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
# to make insecure with passwordless root login, uncomment following lines
|
||||
#env:
|
||||
# - INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
files:
|
||||
- path: etc/getty.shadow
|
||||
# sample sets password for root to "abcdefgh" (without quotes)
|
||||
|
@ -2,16 +2,16 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
trust:
|
||||
|
@ -2,20 +2,20 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0 console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
- name: node_exporter
|
||||
image: linuxkit/node_exporter:1239aef345141a7e6a587a144f4b12aa54d0b1f1
|
||||
image: linuxkit/node_exporter:db8ba40196c010d06f15ffd231132d360614d507
|
||||
trust:
|
||||
org:
|
||||
- linuxkit
|
||||
|
@ -2,24 +2,24 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:026aca5c08c22589a7e319f79449bef2c65f04c5
|
||||
image: linuxkit/metadata:2af15c9f4b0e73515c219b7cc14e6e65e1d4fd6d
|
||||
command: ["/usr/bin/metadata", "openstack"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:b7f21ef1b13300a994e35eac3644e4f84f0ada8a
|
||||
image: linuxkit/sshd:ac5e8364e2e9aa8717a3295c51eb60b8c57373d5
|
||||
binds:
|
||||
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -1,4 +1,4 @@
|
||||
onboot:
|
||||
- name: modprobe
|
||||
image: linuxkit/modprobe:2d153653d1111877a8f53704ef85063a44182ade
|
||||
image: linuxkit/modprobe:1a192d168adadec47afa860e3fc874fbc2a823ff
|
||||
command: ["modprobe", "nicvf"]
|
||||
|
@ -2,31 +2,31 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS1 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: rngd1
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
command: ["/sbin/rngd", "-1"]
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:026aca5c08c22589a7e319f79449bef2c65f04c5
|
||||
image: linuxkit/metadata:2af15c9f4b0e73515c219b7cc14e6e65e1d4fd6d
|
||||
command: ["/usr/bin/metadata", "packet"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:b7f21ef1b13300a994e35eac3644e4f84f0ada8a
|
||||
image: linuxkit/sshd:ac5e8364e2e9aa8717a3295c51eb60b8c57373d5
|
||||
files:
|
||||
- path: root/.ssh/authorized_keys
|
||||
source: ~/.ssh/id_rsa.pub
|
||||
|
@ -4,16 +4,16 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: redis
|
||||
|
@ -2,27 +2,27 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: rngd1
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
command: ["/sbin/rngd", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:b7f21ef1b13300a994e35eac3644e4f84f0ada8a
|
||||
image: linuxkit/sshd:ac5e8364e2e9aa8717a3295c51eb60b8c57373d5
|
||||
files:
|
||||
- path: root/.ssh/authorized_keys
|
||||
source: ~/.ssh/id_rsa.pub
|
||||
|
@ -2,33 +2,33 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:6b46d0450082f397177da36be6b4d74d93eacd1e
|
||||
image: linuxkit/format:e945016ec780a788a71dcddc81497d54d3b14bc7
|
||||
- name: mount
|
||||
image: linuxkit/mount:41685ecc8039643948e5dff46e17584753469a7a
|
||||
image: linuxkit/mount:b346ec277b7074e5c9986128a879c10a1d18742b
|
||||
command: ["/usr/bin/mountie", "/var/external"]
|
||||
- name: swap
|
||||
image: linuxkit/swap:25a2f13110585f3d964a8191fa3a84de51dbb8fd
|
||||
image: linuxkit/swap:b3d5db11b14168874a01b5ea4398186321be836f
|
||||
# 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:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
capabilities:
|
||||
|
@ -2,25 +2,25 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.38
|
||||
cmdline: "console=tty0 console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: tss
|
||||
image: linuxkit/tss:8bf8e058ad1195be631bcaac126c6d396d03edd9
|
||||
image: linuxkit/tss:f0ef7a1e58951edff84e77edf22096cda798feb0
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
files:
|
||||
- path: etc/getty.shadow
|
||||
# sample sets password for root to "abcdefgh" (without quotes)
|
||||
|
@ -2,22 +2,22 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
capabilities:
|
||||
|
@ -2,12 +2,12 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: mount-vpnkit
|
||||
image: alpine:3.6
|
||||
@ -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:b7f21ef1b13300a994e35eac3644e4f84f0ada8a
|
||||
image: linuxkit/sshd:ac5e8364e2e9aa8717a3295c51eb60b8c57373d5
|
||||
- name: vpnkit-forwarder
|
||||
image: linuxkit/vpnkit-forwarder:c7e61d9250de0b21455dc5c8bb885bd8faa31621
|
||||
image: linuxkit/vpnkit-forwarder:89b97912eb8eb14acbf9f6304a92aa366e59d49e
|
||||
binds:
|
||||
- /var/vpnkit:/port
|
||||
net: host
|
||||
|
@ -2,16 +2,16 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: vsudd
|
||||
image: linuxkit/vsudd:26f6a75d35f05b6bbd7d9a2d67c843b7003b3e05
|
||||
image: linuxkit/vsudd:e4e8de4d4fae94e851fbf3d5a0455d766747ac2b
|
||||
binds:
|
||||
- /run/containerd/containerd.sock:/run/containerd/containerd.sock
|
||||
command: ["/vsudd",
|
||||
|
@ -2,27 +2,27 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:026aca5c08c22589a7e319f79449bef2c65f04c5
|
||||
image: linuxkit/metadata:2af15c9f4b0e73515c219b7cc14e6e65e1d4fd6d
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:b7f21ef1b13300a994e35eac3644e4f84f0ada8a
|
||||
image: linuxkit/sshd:ac5e8364e2e9aa8717a3295c51eb60b8c57373d5
|
||||
binds:
|
||||
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -2,18 +2,18 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: wg0
|
||||
image: linuxkit/ip:e6f92b663e004be58c5d1fb43830d9155d625d28
|
||||
image: linuxkit/ip:284c21791d8c05c49eccbd8e8cc2fb97bbd61842
|
||||
net: new
|
||||
binds:
|
||||
- /etc/wireguard:/etc/wireguard
|
||||
@ -26,7 +26,7 @@ onboot:
|
||||
bindNS:
|
||||
net: /run/netns/wg0
|
||||
- name: wg1
|
||||
image: linuxkit/ip:e6f92b663e004be58c5d1fb43830d9155d625d28
|
||||
image: linuxkit/ip:284c21791d8c05c49eccbd8e8cc2fb97bbd61842
|
||||
net: new
|
||||
binds:
|
||||
- /etc/wireguard:/etc/wireguard
|
||||
@ -40,12 +40,12 @@ onboot:
|
||||
net: /run/netns/wg1
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
net: /run/netns/wg1
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
net: /run/netns/wg0
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:585174df463ba33e6c0e2050a29a0d9e942d56cb AS kernel-build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS kernel-build
|
||||
RUN apk add \
|
||||
argp-standalone \
|
||||
automake \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:585174df463ba33e6c0e2050a29a0d9e942d56cb AS kernel-build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS kernel-build
|
||||
RUN apk add \
|
||||
argp-standalone \
|
||||
build-base \
|
||||
|
@ -1,6 +1,6 @@
|
||||
ARG IMAGE
|
||||
FROM ${IMAGE} AS ksrc
|
||||
FROM linuxkit/alpine:585174df463ba33e6c0e2050a29a0d9e942d56cb AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
RUN apk add \
|
||||
attr-dev \
|
||||
autoconf \
|
||||
|
16
linuxkit.yml
16
linuxkit.yml
@ -2,15 +2,15 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
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:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
capabilities:
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror2
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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,14 +1,14 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
RUN apk add abuild gcc git
|
||||
|
||||
ADD build.sh /
|
||||
RUN adduser -D -G abuild builder && sudo -u builder /build.sh
|
||||
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS mirror
|
||||
COPY --from=build /home/builder/*apk /
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --initdb -p /out alpine-baselayout tini
|
||||
RUN apk add --initdb -p /out alpine-baselayout busybox tini
|
||||
RUN apk add --allow-untrusted -p /out /*apk
|
||||
|
||||
# Remove apk residuals. We have a read-only rootfs, so apk is of no use.
|
||||
|
@ -1,10 +1,10 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS qemu
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS qemu
|
||||
RUN apk add \
|
||||
qemu-aarch64 \
|
||||
qemu-arm \
|
||||
qemu-ppc64le
|
||||
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 as alpine
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 as alpine
|
||||
|
||||
RUN apk add ca-certificates
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 as build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 as build
|
||||
|
||||
RUN apk add --no-cache bash go git musl-dev linux-headers make
|
||||
|
||||
@ -16,7 +16,7 @@ RUN go get -d ${GITREPO} \
|
||||
&& mv cadvisor /usr/bin/
|
||||
|
||||
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:e16ac4cf8fa259fa1c94f096a2197cdee7491de4 as alpine
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 as alpine
|
||||
RUN apk add tzdata
|
||||
|
||||
WORKDIR $GOPATH/src/github.com/containerd/containerd
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:0fb5b5e7952d22eeae57607493168e679a4a0c0a AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:e16ac4cf8fa259fa1c94f096a2197cdee7491de4 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
RUN apk add --no-cache --initdb alpine-baselayout make gcc musl-dev git linux-headers
|
||||
|
||||
ADD usermode-helper.c ./
|
||||
@ -16,7 +16,7 @@ RUN mkdir /tmp/bin && cd /tmp/bin/ && cp /go/bin/rc.init . && ln -s rc.init rc.s
|
||||
RUN cd /go/src/cmd/service && ./skanky-vendor.sh $GOPATH/src/github.com/containerd/containerd
|
||||
RUN go-compile.sh /go/src/cmd/service
|
||||
|
||||
FROM linuxkit/alpine:e16ac4cf8fa259fa1c94f096a2197cdee7491de4 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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 busybox musl
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:0fb5b5e7952d22eeae57607493168e679a4a0c0a AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 as build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 as build
|
||||
|
||||
RUN apk add --no-cache go git musl-dev make
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS mirror
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,7 +1,8 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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 \
|
||||
busybox \
|
||||
qemu-guest-agent \
|
||||
musl
|
||||
FROM scratch
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 as alpine
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 as alpine
|
||||
RUN \
|
||||
apk add \
|
||||
bash \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:0fb5b5e7952d22eeae57607493168e679a4a0c0a AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
|
||||
ENV TROUSERS_COMMIT de57f069ef2297d6a6b3a0353e217a5a2f66e444
|
||||
ENV TPM_TOOLS_COMMIT bdf9f1bc8f63cd6fc370c2deb58d03ac55079e84
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 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:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: mobylinux/sysctl:2cf2f9d5b4d314ba1bfc22b2fe931924af666d8c
|
||||
|
@ -2,28 +2,28 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:3ae01a25583ee37a5ff8b09a0e569cb4bd8cf2e9
|
||||
image: linuxkit/sysfs:1284b4a7061a5cc426425f0fb00748192505a05f
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:be811ded880af37a916f23bc9ddb274026ccc514
|
||||
image: linuxkit/format:e945016ec780a788a71dcddc81497d54d3b14bc7
|
||||
- name: mount
|
||||
image: linuxkit/mount:96ac4d32d340ac6e4ddfbf506fa3a497d23649da
|
||||
image: linuxkit/mount:b346ec277b7074e5c9986128a879c10a1d18742b
|
||||
command: ["/usr/bin/mountie", "/var/lib/docker"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:0d7befc79842849d0b88d6c3b64200e340d7cf67
|
||||
image: linuxkit/openntpd:536e5947607c9e6a6771957c2ff817230cba0d3c
|
||||
- name: docker
|
||||
image: docker:17.07.0-ce-dind
|
||||
capabilities:
|
||||
|
@ -2,28 +2,28 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:3ae01a25583ee37a5ff8b09a0e569cb4bd8cf2e9
|
||||
image: linuxkit/sysfs:1284b4a7061a5cc426425f0fb00748192505a05f
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:be811ded880af37a916f23bc9ddb274026ccc514
|
||||
image: linuxkit/format:e945016ec780a788a71dcddc81497d54d3b14bc7
|
||||
- name: mount
|
||||
image: linuxkit/mount:96ac4d32d340ac6e4ddfbf506fa3a497d23649da
|
||||
image: linuxkit/mount:b346ec277b7074e5c9986128a879c10a1d18742b
|
||||
command: ["/usr/bin/mountie", "/var/lib/docker"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:0d7befc79842849d0b88d6c3b64200e340d7cf67
|
||||
image: linuxkit/openntpd:536e5947607c9e6a6771957c2ff817230cba0d3c
|
||||
- name: docker
|
||||
image: docker:17.07.0-ce-dind
|
||||
capabilities:
|
||||
|
@ -2,30 +2,30 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0 console=tty0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: format
|
||||
image: linuxkit/format:be811ded880af37a916f23bc9ddb274026ccc514
|
||||
image: linuxkit/format:e945016ec780a788a71dcddc81497d54d3b14bc7
|
||||
- name: mount
|
||||
image: linuxkit/mount:96ac4d32d340ac6e4ddfbf506fa3a497d23649da
|
||||
image: linuxkit/mount:b346ec277b7074e5c9986128a879c10a1d18742b
|
||||
command: ["/usr/bin/mountie", "/var/lib/etcd"]
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:026aca5c08c22589a7e319f79449bef2c65f04c5
|
||||
image: linuxkit/metadata:2af15c9f4b0e73515c219b7cc14e6e65e1d4fd6d
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:0d7befc79842849d0b88d6c3b64200e340d7cf67
|
||||
image: linuxkit/openntpd:536e5947607c9e6a6771957c2ff817230cba0d3c
|
||||
- name: node_exporter
|
||||
image: linuxkit/node_exporter:a058fe1c6a4440a9689022a9fd7cffdcfd56d52c
|
||||
image: linuxkit/node_exporter:db8ba40196c010d06f15ffd231132d360614d507
|
||||
- name: etcd
|
||||
image: moby/etcd
|
||||
capabilities:
|
||||
|
@ -2,18 +2,18 @@ kernel:
|
||||
image: mobylinux/kernel:4.9.x
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- mobylinux/runc:b0fb122e10dbb7e4e45115177a61a3f8d68c19a9
|
||||
- mobylinux/containerd:18eaf72f3f4f9a9f29ca1951f66df701f873060b
|
||||
- mobylinux/ca-certificates:eabc5a6e59f05aa91529d80e9a595b85b046f935
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:026aca5c08c22589a7e319f79449bef2c65f04c5
|
||||
image: linuxkit/metadata:2af15c9f4b0e73515c219b7cc14e6e65e1d4fd6d
|
||||
services:
|
||||
- name: rngd
|
||||
image: mobylinux/rngd:3dad6dd43270fa632ac031e99d1947f20b22eec9
|
||||
|
@ -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:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
- linuxkit/ima-utils:dfeb3896fd29308b80ff9ba7fe5b8b767e40ca29
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
capabilities:
|
||||
|
@ -2,7 +2,7 @@ kernel:
|
||||
image: mobylinux/kernel-landlock:4.9.x
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- mobylinux/runc:b0fb122e10dbb7e4e45115177a61a3f8d68c19a9
|
||||
- mobylinux/containerd:18eaf72f3f4f9a9f29ca1951f66df701f873060b
|
||||
- mobylinux/ca-certificates:eabc5a6e59f05aa91529d80e9a595b85b046f935
|
||||
|
@ -2,20 +2,20 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0 console=tty0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75 # with runc, logwrite, startmemlogd
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4 # with runc, logwrite, startmemlogd
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
- linuxkit/memlogd:9b5834189f598f43c507f6938077113906f51012
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
capabilities:
|
||||
|
@ -2,16 +2,16 @@ kernel:
|
||||
image: "linuxkitprojects/kernel-memorizer:4.10_dbg-17e2eee03ab59f8df8a9c10ace003a84aec2f540"
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
trust:
|
||||
|
@ -2,23 +2,23 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.34
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
- samoht/fdd
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
files:
|
||||
- path: etc/init.d/020-fdd-init
|
||||
mode: "0700"
|
||||
|
@ -2,12 +2,12 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- 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:361e9d03f96ef5f22e61c69280ffb9291bde746f
|
||||
image: linuxkit/sshd:ac5e8364e2e9aa8717a3295c51eb60b8c57373d5
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
files:
|
||||
|
@ -2,18 +2,18 @@ kernel:
|
||||
image: okernel:latest
|
||||
cmdline: "console=tty0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
services:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
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:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
capabilities:
|
||||
|
@ -2,38 +2,38 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
- linuxkit/ca-certificates:de21b84d9b055ad9dcecc57965b654a7a24ef8e0
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:efe693534bb623007f94a2e3ff4a9fd6ead75aa1
|
||||
image: linuxkit/sysctl:ce3bde5118a41092f1b7048c85d14fb35237ed45
|
||||
binds:
|
||||
- /etc/sysctl.d/01-swarmd.conf:/etc/sysctl.d/01-swarmd.conf
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:6b46d0450082f397177da36be6b4d74d93eacd1e
|
||||
image: linuxkit/format:e945016ec780a788a71dcddc81497d54d3b14bc7
|
||||
- name: mount
|
||||
image: linuxkit/mount:41685ecc8039643948e5dff46e17584753469a7a
|
||||
image: linuxkit/mount:b346ec277b7074e5c9986128a879c10a1d18742b
|
||||
command: ["/usr/bin/mountie", "/var/lib/swarmd"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:026aca5c08c22589a7e319f79449bef2c65f04c5
|
||||
image: linuxkit/metadata:2af15c9f4b0e73515c219b7cc14e6e65e1d4fd6d
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:6af22c32c98536a79230eef000e9abd06b037faa
|
||||
image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: qemu-ga
|
||||
image: linuxkit/qemu-ga:4152b81a19db95eebdc73879fd01575e2c77a88a
|
||||
image: linuxkit/qemu-ga:61f1964a9ee6dfe30fb4c09472370ed916e91923
|
||||
binds:
|
||||
- /dev/vport0p1:/dev/vport0p1
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
image: linuxkit/rngd:94e01a4b16fadb053455cdc2269c4eb0b39199cd
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:07a80c3e3e816658318ac027e1253ff9a228b8de
|
||||
image: linuxkit/openntpd:536e5947607c9e6a6771957c2ff817230cba0d3c
|
||||
- name: weave
|
||||
image: weaveworks/weave:2.0.1@sha256:2d70caac7db33365482cc923d40ff8d3ec1238ae7fe06a00b3dde310d09f226e # Must match swarmd/Dockerfile
|
||||
command: ["/bin/sh", "/home/weave/weaver-wrapper"]
|
||||
|
@ -20,7 +20,7 @@ import (
|
||||
|
||||
// QemuImg is the version of qemu container
|
||||
const (
|
||||
QemuImg = "linuxkit/qemu:a8ac18dcf0ecaf6dffc887192ea30e0fb2f702de"
|
||||
QemuImg = "linuxkit/qemu:9c263e6334f9b9de481eefd66942368b793cae80"
|
||||
defaultFWPath = "/usr/share/ovmf/bios.bin"
|
||||
)
|
||||
|
||||
|
8
src/cmd/linuxkit/vendor/github.com/moby/tool/src/moby/linuxkit.go
generated
vendored
8
src/cmd/linuxkit/vendor/github.com/moby/tool/src/moby/linuxkit.go
generated
vendored
@ -18,13 +18,13 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.39
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:00ab58c9681a0bf42b2e35134c1ccf1591ebb64d
|
||||
- linuxkit/runc:f5960b83a8766ae083efc744fa63dbf877450e4f
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: mkimage
|
||||
image: linuxkit/mkimage:a63b8ee4c5de335afc32ba850e0af319b25b96c0
|
||||
image: linuxkit/mkimage:e439d6108466186948ca7ea2a293fc6c1d1183fa
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
trust:
|
||||
org:
|
||||
- linuxkit
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
image: linuxkit/dhcpcd:0d59a6cc03412289ef4313f2491ec666c1715cc9
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,12 +2,12 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/containerd:a25f471a8ca68e75afad7bf84187adbe70513b8d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
- linuxkit/containerd:e58a382c33bb509ba3e0e8170dfaa5a100504c5b
|
||||
services:
|
||||
- name: acpid
|
||||
image: linuxkit/acpid:168f871c7211c9d5e96002d53cb497b26e2d622b
|
||||
image: linuxkit/acpid:fa37afe931844fb834e1906ec244d13b031741b9
|
||||
trust:
|
||||
org:
|
||||
- linuxkit
|
||||
|
@ -2,13 +2,13 @@ kernel:
|
||||
image: linuxkit/kernel:4.4.104
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: check-kernel-config
|
||||
image: linuxkit/test-kernel-config:ff8fac1c318403aff3e2993dd9b130304e09f92e
|
||||
image: linuxkit/test-kernel-config:9c3668b834540d2e776d0bf4aff661b3bcc35616
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,13 +2,13 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: check-kernel-config
|
||||
image: linuxkit/test-kernel-config:ff8fac1c318403aff3e2993dd9b130304e09f92e
|
||||
image: linuxkit/test-kernel-config:9c3668b834540d2e776d0bf4aff661b3bcc35616
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,13 +2,13 @@ kernel:
|
||||
image: linuxkit/kernel:4.14.4
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: check-kernel-config
|
||||
image: linuxkit/test-kernel-config:ff8fac1c318403aff3e2993dd9b130304e09f92e
|
||||
image: linuxkit/test-kernel-config:9c3668b834540d2e776d0bf4aff661b3bcc35616
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -6,7 +6,7 @@
|
||||
FROM linuxkit/kernel:4.4.104 AS ksrc
|
||||
|
||||
# Extract headers and compile module
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
RUN apk add build-base libelf-dev
|
||||
|
||||
COPY --from=ksrc /kernel-dev.tar /
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:4.4.104
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: check
|
||||
image: kmod-test
|
||||
@ -13,7 +13,7 @@ onboot:
|
||||
capabilities:
|
||||
- all
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -6,7 +6,7 @@
|
||||
FROM linuxkit/kernel:4.9.67 AS ksrc
|
||||
|
||||
# Extract headers and compile module
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
RUN apk add build-base libelf-dev
|
||||
|
||||
COPY --from=ksrc /kernel-dev.tar /
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.67
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: check
|
||||
image: kmod-test
|
||||
@ -13,7 +13,7 @@ onboot:
|
||||
capabilities:
|
||||
- all
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -6,7 +6,7 @@
|
||||
FROM linuxkit/kernel:4.14.4 AS ksrc
|
||||
|
||||
# Extract headers and compile module
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
FROM linuxkit/alpine:d307c8a386fa3f32cddda9409b9687e191cdd6f1 AS build
|
||||
RUN apk add build-base libelf-dev
|
||||
|
||||
COPY --from=ksrc /kernel-dev.tar /
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:4.14.4
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:19ab525233763e1740cd3b9d60cd17141d316776
|
||||
- linuxkit/runc:1b0741d07949c0acc444cd6a04ee7f833443579d
|
||||
- linuxkit/init:9250948d0de494df8a811edb3242b4584057cfe4
|
||||
- linuxkit/runc:abc3f292653e64a2fd488e9675ace19a55ec7023
|
||||
onboot:
|
||||
- name: check
|
||||
image: kmod-test
|
||||
@ -13,7 +13,7 @@ onboot:
|
||||
capabilities:
|
||||
- all
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
image: linuxkit/test-ns:9d7aaac18f171e0bda447abe2dddca754b9ab669
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "1", "-r"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
image: linuxkit/test-ns:9d7aaac18f171e0bda447abe2dddca754b9ab669
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "1"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
image: linuxkit/test-ns:9d7aaac18f171e0bda447abe2dddca754b9ab669
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "10"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
image: linuxkit/test-ns:9d7aaac18f171e0bda447abe2dddca754b9ab669
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "10"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
image: linuxkit/test-ns:9d7aaac18f171e0bda447abe2dddca754b9ab669
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "5"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
image: linuxkit/test-ns:9d7aaac18f171e0bda447abe2dddca754b9ab669
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "5"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
image: linuxkit/poweroff:bccfe1cb04fc7bb9f03613d2314f38abd2620f29
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user