mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-22 02:21:34 +00:00
commit
d4a91982ab
2
Makefile
2
Makefile
@ -5,7 +5,7 @@ all: default
|
||||
VERSION="0.0" # dummy for now
|
||||
GIT_COMMIT=$(shell git rev-list -1 HEAD)
|
||||
|
||||
GO_COMPILE=linuxkit/go-compile:758282e180b4bcc7259f77edd22c46b890be2549
|
||||
GO_COMPILE=linuxkit/go-compile:fb53f01a669de5e91ec855b4f67a57b514b4f6ed
|
||||
|
||||
MOBY?=bin/moby
|
||||
LINUXKIT?=bin/linuxkit
|
||||
|
@ -3,30 +3,30 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/vpnkit-expose-port:0832f0cfdfc02214680588a5018619cd1eb4b93f # install vpnkit-expose-port and vpnkit-iptables-wrapper on host
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/vpnkit-expose-port:15c56c57ac9a7adeec20b34f36f2bc165c347679 # install vpnkit-expose-port and vpnkit-iptables-wrapper on host
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
# support metadata for optional config in /var/config
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:c385bb2dce56acf8b831bbf7fca3c8fc836ded66
|
||||
image: linuxkit/metadata:9506d124d0a3ff645c9781c47f207423abf6154d
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:a844eb2ac09df07f5eda89d5588d76bf8d96cfca
|
||||
image: linuxkit/sysfs:5367b46211882278b84a9e8048855ca5df65beda
|
||||
- name: binfmt
|
||||
image: linuxkit/binfmt:7b2fdd981f3cdb5d21961e7d584e600af5a934a0
|
||||
image: linuxkit/binfmt:4d959cc25447fc1c8aa6bf695bc6fc9734d626df
|
||||
# Format and mount the disk image in /var/lib/docker
|
||||
- name: format
|
||||
image: linuxkit/format:be811ded880af37a916f23bc9ddb274026ccc514
|
||||
image: linuxkit/format:10e75e78e1f134d310c62e9a0352df1c67b0dd81
|
||||
- name: mount
|
||||
image: linuxkit/mount:ef2e2106212b2d333b548821191f04da984ef48f
|
||||
image: linuxkit/mount:41685ecc8039643948e5dff46e17584753469a7a
|
||||
command: ["/usr/bin/mountie", "/var/lib"]
|
||||
# make a swap file on the mounted disk
|
||||
- name: swap
|
||||
image: linuxkit/swap:195ef5c89fcd68ff412ecb01a330e75503dc7b83
|
||||
image: linuxkit/swap:25a2f13110585f3d964a8191fa3a84de51dbb8fd
|
||||
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:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
# Enable acpi to shutdown on power events
|
||||
- name: acpid
|
||||
image: linuxkit/acpid:6e3f0c5deca1633230dce9a35b67e1f61f05c47a
|
||||
image: linuxkit/acpid:168f871c7211c9d5e96002d53cb497b26e2d622b
|
||||
# Enable getty for easier debugging
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
# Run ntpd to keep time synchronised in the VM
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:8d32daf90ecf70b7e185cb7a2db53b4c539d371c
|
||||
image: linuxkit/openntpd:07a80c3e3e816658318ac027e1253ff9a228b8de
|
||||
# VSOCK to unix domain socket forwarding. Forwards guest /var/run/docker.sock
|
||||
# to a socket on the host.
|
||||
- name: vsudd
|
||||
image: linuxkit/vsudd:a0336f99442a81e5f9bb117353c0c74455f5556b
|
||||
image: linuxkit/vsudd:26f6a75d35f05b6bbd7d9a2d67c843b7003b3e05
|
||||
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:42e88e9338c3b93eda79f6582f58d87fd78d0001
|
||||
image: linuxkit/vpnkit-forwarder:c7e61d9250de0b21455dc5c8bb885bd8faa31621
|
||||
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:b20b16638f6712ce83699ae4aea5a6e8d3658db3
|
||||
image: linuxkit/trim-after-delete:9ae85973d9f2516a75ff855705ddf513c031c425
|
||||
# When the host resumes from sleep, force a clock resync
|
||||
- name: host-timesync-daemon
|
||||
image: linuxkit/host-timesync-daemon:5d706ccc6d0d3e5b4b5d798deafde2e76acfe01d
|
||||
image: linuxkit/host-timesync-daemon:2423a4014d9425a7f9820a85db808686cfa48e4a
|
||||
|
||||
trust:
|
||||
org:
|
||||
|
@ -4,8 +4,8 @@ kernel:
|
||||
cmdline: "console=ttyS0"
|
||||
tar: none
|
||||
init:
|
||||
- linuxkit/init-lcow:00195e5eb94189512ccf681730609d005dfa3979
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init-lcow:f47a2a1f2e7d739eefd7e4f5fa8dc1b1da574876
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
files:
|
||||
- path: etc/linuxkit.yml
|
||||
metadata: yaml
|
||||
|
@ -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:758282e180b4bcc7259f77edd22c46b890be2549
|
||||
linuxkit/go-compile:fb53f01a669de5e91ec855b4f67a57b514b4f6ed
|
||||
```
|
||||
|
||||
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:758282e180b4bcc7259f77edd22c46b890be2549
|
||||
linuxkit/go-compile:fb53f01a669de5e91ec855b4f67a57b514b4f6ed
|
||||
github.com/docker/docker
|
||||
```
|
||||
|
||||
|
@ -2,23 +2,23 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:c385bb2dce56acf8b831bbf7fca3c8fc836ded66
|
||||
image: linuxkit/metadata:9506d124d0a3ff645c9781c47f207423abf6154d
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:4a2fc7be31fa57dcade391de6173e0af55296e7f
|
||||
image: linuxkit/sshd:f55ec010619e19178d5daecb4e595e84ecbf7d67
|
||||
binds:
|
||||
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -2,20 +2,20 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:4a2fc7be31fa57dcade391de6173e0af55296e7f
|
||||
image: linuxkit/sshd:f55ec010619e19178d5daecb4e595e84ecbf7d67
|
||||
files:
|
||||
- path: root/.ssh/authorized_keys
|
||||
source: ~/.ssh/id_rsa.pub
|
||||
|
@ -2,31 +2,31 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:a844eb2ac09df07f5eda89d5588d76bf8d96cfca
|
||||
image: linuxkit/sysfs:5367b46211882278b84a9e8048855ca5df65beda
|
||||
- name: format
|
||||
image: linuxkit/format:be811ded880af37a916f23bc9ddb274026ccc514
|
||||
image: linuxkit/format:10e75e78e1f134d310c62e9a0352df1c67b0dd81
|
||||
- name: mount
|
||||
image: linuxkit/mount:ef2e2106212b2d333b548821191f04da984ef48f
|
||||
image: linuxkit/mount:41685ecc8039643948e5dff46e17584753469a7a
|
||||
command: ["/usr/bin/mountie", "/var/lib/docker"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:8d32daf90ecf70b7e185cb7a2db53b4c539d371c
|
||||
image: linuxkit/openntpd:07a80c3e3e816658318ac027e1253ff9a228b8de
|
||||
- name: docker
|
||||
image: docker:17.07.0-ce-dind
|
||||
capabilities:
|
||||
|
@ -2,27 +2,27 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:c385bb2dce56acf8b831bbf7fca3c8fc836ded66
|
||||
image: linuxkit/metadata:9506d124d0a3ff645c9781c47f207423abf6154d
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:4a2fc7be31fa57dcade391de6173e0af55296e7f
|
||||
image: linuxkit/sshd:f55ec010619e19178d5daecb4e595e84ecbf7d67
|
||||
binds:
|
||||
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -2,24 +2,24 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
# to make insecure with passwordless root login, uncomment following lines
|
||||
#env:
|
||||
# - INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
files:
|
||||
- path: etc/getty.shadow
|
||||
# sample sets password for root to "abcdefgh" (without quotes)
|
||||
|
@ -2,16 +2,16 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
trust:
|
||||
|
@ -2,18 +2,18 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0 console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
- name: node_exporter
|
||||
image: linuxkit/node_exporter:a058fe1c6a4440a9689022a9fd7cffdcfd56d52c
|
||||
trust:
|
||||
|
@ -2,24 +2,24 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:154913b72c6f1f33eb408609fca9963628e8c051
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:d4408777ed6b6e6e562a5d4938fd09804324b33e
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:c385bb2dce56acf8b831bbf7fca3c8fc836ded66
|
||||
image: linuxkit/metadata:9506d124d0a3ff645c9781c47f207423abf6154d
|
||||
command: ["/usr/bin/metadata", "openstack"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:4a2fc7be31fa57dcade391de6173e0af55296e7f
|
||||
image: linuxkit/sshd:f55ec010619e19178d5daecb4e595e84ecbf7d67
|
||||
binds:
|
||||
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -2,27 +2,27 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: rngd1
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
command: ["/sbin/rngd", "-1"]
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:c385bb2dce56acf8b831bbf7fca3c8fc836ded66
|
||||
image: linuxkit/metadata:9506d124d0a3ff645c9781c47f207423abf6154d
|
||||
command: ["/usr/bin/metadata", "packet"]
|
||||
services:
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:4a2fc7be31fa57dcade391de6173e0af55296e7f
|
||||
image: linuxkit/sshd:f55ec010619e19178d5daecb4e595e84ecbf7d67
|
||||
trust:
|
||||
org:
|
||||
- linuxkit
|
||||
|
@ -4,16 +4,16 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: redis
|
||||
|
@ -2,27 +2,27 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: rngd1
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
command: ["/sbin/rngd", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:4a2fc7be31fa57dcade391de6173e0af55296e7f
|
||||
image: linuxkit/sshd:f55ec010619e19178d5daecb4e595e84ecbf7d67
|
||||
files:
|
||||
- path: root/.ssh/authorized_keys
|
||||
source: ~/.ssh/id_rsa.pub
|
||||
|
@ -2,33 +2,33 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:be811ded880af37a916f23bc9ddb274026ccc514
|
||||
image: linuxkit/format:10e75e78e1f134d310c62e9a0352df1c67b0dd81
|
||||
- name: mount
|
||||
image: linuxkit/mount:ef2e2106212b2d333b548821191f04da984ef48f
|
||||
image: linuxkit/mount:41685ecc8039643948e5dff46e17584753469a7a
|
||||
command: ["/usr/bin/mountie", "/var/external"]
|
||||
- name: swap
|
||||
image: linuxkit/swap:195ef5c89fcd68ff412ecb01a330e75503dc7b83
|
||||
image: linuxkit/swap:25a2f13110585f3d964a8191fa3a84de51dbb8fd
|
||||
# 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:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- 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:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: tss
|
||||
image: linuxkit/tss:2c29b212733e90fbbd7aeaf032cadc044dbc7fe4
|
||||
image: linuxkit/tss:8bf8e058ad1195be631bcaac126c6d396d03edd9
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
files:
|
||||
- path: etc/getty.shadow
|
||||
# sample sets password for root to "abcdefgh" (without quotes)
|
||||
|
@ -2,22 +2,22 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
capabilities:
|
||||
|
@ -2,12 +2,12 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: mount-vpnkit
|
||||
image: alpine:3.6
|
||||
@ -19,15 +19,15 @@ onboot:
|
||||
command: ["sh", "-c", "mkdir /host_var/vpnkit && mount -v -t 9p -o trans=virtio,dfltuid=1001,dfltgid=50,version=9p2000 port /host_var/vpnkit"]
|
||||
services:
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:4a2fc7be31fa57dcade391de6173e0af55296e7f
|
||||
image: linuxkit/sshd:f55ec010619e19178d5daecb4e595e84ecbf7d67
|
||||
- name: vpnkit-forwarder
|
||||
image: linuxkit/vpnkit-forwarder:42e88e9338c3b93eda79f6582f58d87fd78d0001
|
||||
image: linuxkit/vpnkit-forwarder:c7e61d9250de0b21455dc5c8bb885bd8faa31621
|
||||
binds:
|
||||
- /var/vpnkit:/port
|
||||
net: host
|
||||
command: ["/vpnkit-forwarder"]
|
||||
- name: vpnkit-expose-port
|
||||
image: linuxkit/vpnkit-forwarder:42e88e9338c3b93eda79f6582f58d87fd78d0001
|
||||
image: linuxkit/vpnkit-forwarder:c7e61d9250de0b21455dc5c8bb885bd8faa31621
|
||||
net: none
|
||||
binds:
|
||||
- /var/vpnkit:/port
|
||||
|
@ -2,16 +2,16 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
services:
|
||||
- name: vsudd
|
||||
image: linuxkit/vsudd:a0336f99442a81e5f9bb117353c0c74455f5556b
|
||||
image: linuxkit/vsudd:26f6a75d35f05b6bbd7d9a2d67c843b7003b3e05
|
||||
binds:
|
||||
- /run/containerd/containerd.sock:/run/containerd/containerd.sock
|
||||
command: ["/vsudd",
|
||||
|
@ -2,27 +2,27 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:c385bb2dce56acf8b831bbf7fca3c8fc836ded66
|
||||
image: linuxkit/metadata:9506d124d0a3ff645c9781c47f207423abf6154d
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:4a2fc7be31fa57dcade391de6173e0af55296e7f
|
||||
image: linuxkit/sshd:f55ec010619e19178d5daecb4e595e84ecbf7d67
|
||||
binds:
|
||||
- /var/config/ssh/authorized_keys:/root/.ssh/authorized_keys
|
||||
- name: nginx
|
||||
|
@ -2,18 +2,18 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: wg0
|
||||
image: linuxkit/ip:30fa3497a42cf941301c1e9cde09b3d68f01b847
|
||||
image: linuxkit/ip:0d1d6d9810812bc23652556c3cbe7d2e87655278
|
||||
net: new
|
||||
binds:
|
||||
- /etc/wireguard:/etc/wireguard
|
||||
@ -26,7 +26,7 @@ onboot:
|
||||
bindNS:
|
||||
net: /run/netns/wg0
|
||||
- name: wg1
|
||||
image: linuxkit/ip:30fa3497a42cf941301c1e9cde09b3d68f01b847
|
||||
image: linuxkit/ip:0d1d6d9810812bc23652556c3cbe7d2e87655278
|
||||
net: new
|
||||
binds:
|
||||
- /etc/wireguard:/etc/wireguard
|
||||
@ -40,12 +40,12 @@ onboot:
|
||||
net: /run/netns/wg1
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
net: /run/netns/wg1
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
net: /run/netns/wg0
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS kernel-build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS kernel-build
|
||||
RUN apk add \
|
||||
argp-standalone \
|
||||
automake \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS kernel-build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS kernel-build
|
||||
RUN apk add \
|
||||
argp-standalone \
|
||||
build-base \
|
||||
|
@ -1,6 +1,6 @@
|
||||
ARG IMAGE
|
||||
FROM ${IMAGE} AS ksrc
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
RUN apk add \
|
||||
attr-dev \
|
||||
autoconf \
|
||||
|
16
linuxkit.yml
16
linuxkit.yml
@ -2,15 +2,15 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
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:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
capabilities:
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror2
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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,10 +1,10 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
COPY --from=build /home/builder/*apk /
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
|
@ -1,10 +1,10 @@
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a AS qemu
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS qemu
|
||||
RUN apk add \
|
||||
qemu-aarch64 \
|
||||
qemu-arm \
|
||||
qemu-ppc64le
|
||||
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d as alpine
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 as alpine
|
||||
|
||||
RUN apk add ca-certificates
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a as alpine
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 as alpine
|
||||
RUN apk add tzdata
|
||||
|
||||
WORKDIR $GOPATH/src/github.com/containerd/containerd
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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 \
|
||||
@ -7,7 +7,7 @@ RUN apk add --no-cache --initdb -p /out \
|
||||
musl
|
||||
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache
|
||||
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
ENV OPENGCS_REPO=https://github.com/Microsoft/opengcs
|
||||
ENV OPENGCS_COMMIT=48ae4e3ba3d2fea746fb4dc20a72832a46f45466
|
||||
RUN apk add --no-cache build-base curl git go musl-dev
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN mkdir -p /out/var/run
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a as alpine
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 as alpine
|
||||
RUN \
|
||||
apk add \
|
||||
bash \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS mirror
|
||||
|
||||
RUN apk add --no-cache go musl-dev
|
||||
ENV GOPATH=/go PATH=$PATH:/go/bin
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
|
||||
ENV TROUSERS_COMMIT de57f069ef2297d6a6b3a0353e217a5a2f66e444
|
||||
ENV TPM_TOOLS_COMMIT bdf9f1bc8f63cd6fc370c2deb58d03ac55079e84
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS mirror
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 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:6211ec0252873c9ff9604101fb256353f5a3832a AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
|
||||
RUN \
|
||||
apk add \
|
||||
|
@ -1,3 +1,3 @@
|
||||
services:
|
||||
- name: kubernetes-image-cache-control-plane
|
||||
image: linuxkitprojects/kubernetes-image-cache-control-plane:b06b6eb0b97026b2cbe8521509477c55471a7ca0
|
||||
image: linuxkitprojects/kubernetes-image-cache-control-plane:b0fa7a0191616ed8bef9b7d4a5014dffc62c2082
|
||||
|
@ -23,7 +23,7 @@ services:
|
||||
runtime:
|
||||
mkdir: ["/var/lib/kubeadm", "/var/lib/cni/etc", "/var/lib/cni/opt", "/var/lib/kubelet-plugins"]
|
||||
- name: kubernetes-image-cache-common
|
||||
image: linuxkitprojects/kubernetes-image-cache-common:b06b6eb0b97026b2cbe8521509477c55471a7ca0
|
||||
image: linuxkitprojects/kubernetes-image-cache-common:b0fa7a0191616ed8bef9b7d4a5014dffc62c2082
|
||||
files:
|
||||
- path: /etc/kubelet.sh.conf
|
||||
contents: ""
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
|
||||
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
||||
RUN apk add --no-cache --initdb -p /out \
|
||||
|
@ -2,41 +2,41 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=tty0 console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
binds:
|
||||
- /etc/sysctl.d/01-kubernetes.conf:/etc/sysctl.d/01-kubernetes.conf
|
||||
readonly: false
|
||||
- name: sysfs
|
||||
image: linuxkit/sysfs:a844eb2ac09df07f5eda89d5588d76bf8d96cfca
|
||||
image: linuxkit/sysfs:5367b46211882278b84a9e8048855ca5df65beda
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:c385bb2dce56acf8b831bbf7fca3c8fc836ded66
|
||||
image: linuxkit/metadata:9506d124d0a3ff645c9781c47f207423abf6154d
|
||||
- name: format
|
||||
image: linuxkit/format:be811ded880af37a916f23bc9ddb274026ccc514
|
||||
image: linuxkit/format:10e75e78e1f134d310c62e9a0352df1c67b0dd81
|
||||
- name: mounts
|
||||
image: linuxkit/mount:ef2e2106212b2d333b548821191f04da984ef48f
|
||||
image: linuxkit/mount:41685ecc8039643948e5dff46e17584753469a7a
|
||||
command: ["/usr/bin/mountie", "/var/lib/"]
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:8d32daf90ecf70b7e185cb7a2db53b4c539d371c
|
||||
image: linuxkit/openntpd:07a80c3e3e816658318ac027e1253ff9a228b8de
|
||||
- name: sshd
|
||||
image: linuxkit/sshd:4a2fc7be31fa57dcade391de6173e0af55296e7f
|
||||
image: linuxkit/sshd:f55ec010619e19178d5daecb4e595e84ecbf7d67
|
||||
- name: kubelet
|
||||
image: linuxkitprojects/kubernetes:be292678cf385309de7c5e578b31a7d2c78e7578
|
||||
image: linuxkitprojects/kubernetes:d6caf404753aa1d72ad96ff149ea5edc7c24be8f
|
||||
files:
|
||||
- path: etc/linuxkit.yml
|
||||
metadata: yaml
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
|
||||
ENV kubernetes_version v1.8.1
|
||||
ENV cni_version v0.6.0
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS kernel-build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS kernel-build
|
||||
RUN apk add \
|
||||
argp-standalone \
|
||||
automake \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS kernel-build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS kernel-build
|
||||
RUN apk --no-cache add \
|
||||
argp-standalone \
|
||||
automake \
|
||||
|
@ -2,38 +2,38 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0 page_poison=1"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/ca-certificates:ea3c4c120f929f4f07ac8535d75933365b5e9582
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
- linuxkit/ca-certificates:af4880e78edc28743f7c5e262678c67c6add4c26
|
||||
onboot:
|
||||
- name: sysctl
|
||||
image: linuxkit/sysctl:1644bf07edbcaf5ce0bb764fa925b544183547f9
|
||||
image: linuxkit/sysctl:a9ad57ed738a31ea9380cd73236866c312b35489
|
||||
binds:
|
||||
- /etc/sysctl.d/01-swarmd.conf:/etc/sysctl.d/01-swarmd.conf
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
- name: format
|
||||
image: linuxkit/format:be811ded880af37a916f23bc9ddb274026ccc514
|
||||
image: linuxkit/format:10e75e78e1f134d310c62e9a0352df1c67b0dd81
|
||||
- name: mount
|
||||
image: linuxkit/mount:ef2e2106212b2d333b548821191f04da984ef48f
|
||||
image: linuxkit/mount:41685ecc8039643948e5dff46e17584753469a7a
|
||||
command: ["/usr/bin/mountie", "/var/lib/swarmd"]
|
||||
- name: metadata
|
||||
image: linuxkit/metadata:c385bb2dce56acf8b831bbf7fca3c8fc836ded66
|
||||
image: linuxkit/metadata:9506d124d0a3ff645c9781c47f207423abf6154d
|
||||
services:
|
||||
- name: getty
|
||||
image: linuxkit/getty:7abaf7b276c59f80891d92e9279e3e3ee8e2f512
|
||||
image: linuxkit/getty:626ccc8e1766c40447f29a790d3a7cfff126f2a2
|
||||
env:
|
||||
- INSECURE=true
|
||||
- name: qemu-ga
|
||||
image: linuxkit/qemu-ga:2f002fffcb6f5f65bc034b5c0fef60545631ff93
|
||||
image: linuxkit/qemu-ga:4152b81a19db95eebdc73879fd01575e2c77a88a
|
||||
binds:
|
||||
- /dev/vport0p1:/dev/vport0p1
|
||||
- name: rngd
|
||||
image: linuxkit/rngd:45ed7759dd927f4cce3863073ea2e0da1d52a427
|
||||
image: linuxkit/rngd:842e5e8ece7934f0cab9fd0027b595ff3471e5b9
|
||||
- name: ntpd
|
||||
image: linuxkit/openntpd:8d32daf90ecf70b7e185cb7a2db53b4c539d371c
|
||||
image: linuxkit/openntpd:07a80c3e3e816658318ac027e1253ff9a228b8de
|
||||
- name: weave
|
||||
image: weaveworks/weave:2.0.1@sha256:2d70caac7db33365482cc923d40ff8d3ec1238ae7fe06a00b3dde310d09f226e # Must match swarmd/Dockerfile
|
||||
command: ["/bin/sh", "/home/weave/weaver-wrapper"]
|
||||
@ -45,7 +45,7 @@ services:
|
||||
- /var:/var
|
||||
- /var/lib/swarmd:/weavedb
|
||||
- name: swarmd
|
||||
image: linuxkitprojects/swarmd:668f9f78502d4069841552219845dc57dc846492
|
||||
image: linuxkitprojects/swarmd:8c034e2862d3a0fce1e445511a69c4330a1d4dd5
|
||||
command: ["/usr/bin/swarmd", "--containerd-addr=/run/containerd/containerd.sock", "--log-level=debug", "--state-dir=/var/lib/swarmd"]
|
||||
capabilities:
|
||||
- all
|
||||
|
@ -2,7 +2,7 @@ FROM weaveworks/weave:2.0.1@sha256:2d70caac7db33365482cc923d40ff8d3ec1238ae7fe06
|
||||
|
||||
# Nothing to do in here, just for COPY --from=weave below
|
||||
|
||||
FROM linuxkit/alpine:6211ec0252873c9ff9604101fb256353f5a3832a AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
|
||||
RUN \
|
||||
apk update && apk upgrade && \
|
||||
|
@ -20,7 +20,7 @@ import (
|
||||
|
||||
// QemuImg is the version of qemu container
|
||||
const (
|
||||
QemuImg = "linuxkit/qemu:f185296d0420d3771cfea26e069e595069a5be3e"
|
||||
QemuImg = "linuxkit/qemu:a8ac18dcf0ecaf6dffc887192ea30e0fb2f702de"
|
||||
defaultFWPath = "/usr/share/ovmf/bios.bin"
|
||||
)
|
||||
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: dhcpcd
|
||||
image: linuxkit/dhcpcd:aa685261ceb2557990dcfe9dd8824c6b9ec416e2
|
||||
image: linuxkit/dhcpcd:48831507404049660b960e4055f544917d90378e
|
||||
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,11 +2,11 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "10"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,12 +2,12 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/containerd:ed8e8f92e24dd4b94260cf147594ae3fd13a2182
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
- linuxkit/containerd:82be2bbb7cf83bab161ffe2a64624ba1107725ff
|
||||
services:
|
||||
- name: acpid
|
||||
image: linuxkit/acpid:6e3f0c5deca1633230dce9a35b67e1f61f05c47a
|
||||
image: linuxkit/acpid:168f871c7211c9d5e96002d53cb497b26e2d622b
|
||||
trust:
|
||||
org:
|
||||
- linuxkit
|
||||
|
@ -2,13 +2,13 @@ kernel:
|
||||
image: linuxkit/kernel:4.4.94
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: check-kernel-config
|
||||
image: linuxkit/test-kernel-config:8b09b3d6e69440582e590a8981585851e9206bdc
|
||||
image: linuxkit/test-kernel-config:ff8fac1c318403aff3e2993dd9b130304e09f92e
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,13 +2,13 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: check-kernel-config
|
||||
image: linuxkit/test-kernel-config:8b09b3d6e69440582e590a8981585851e9206bdc
|
||||
image: linuxkit/test-kernel-config:ff8fac1c318403aff3e2993dd9b130304e09f92e
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -2,13 +2,13 @@ kernel:
|
||||
image: linuxkit/kernel:4.13.9
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: check-kernel-config
|
||||
image: linuxkit/test-kernel-config:8b09b3d6e69440582e590a8981585851e9206bdc
|
||||
image: linuxkit/test-kernel-config:ff8fac1c318403aff3e2993dd9b130304e09f92e
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -6,7 +6,7 @@
|
||||
FROM linuxkit/kernel:4.9.58 AS ksrc
|
||||
|
||||
# Extract headers and compile module
|
||||
FROM linuxkit/alpine:ad35b6ddbc70faa07e59a9d7dee7707c08122e8d AS build
|
||||
FROM linuxkit/alpine:07f7d136e427dc68154cd5edbb2b9576f9ac5213 AS build
|
||||
RUN apk add build-base
|
||||
|
||||
COPY --from=ksrc /kernel-dev.tar /
|
||||
|
@ -2,8 +2,8 @@ kernel:
|
||||
image: linuxkit/kernel:4.9.58
|
||||
cmdline: "console=ttyS0"
|
||||
init:
|
||||
- linuxkit/init:6b3755e47f00d6027321d3fca99a19af6504be75
|
||||
- linuxkit/runc:52f92cb577879ce4cfe4e89be2d63af82523fc92
|
||||
- linuxkit/init:42a92119e1ca10380e0d33e26c0cbcf85b9b3558
|
||||
- linuxkit/runc:817fdc592eac6cb7804fa1721a43a7f6e23fb50f
|
||||
onboot:
|
||||
- name: check
|
||||
image: kmod-test
|
||||
@ -13,7 +13,7 @@ onboot:
|
||||
capabilities:
|
||||
- all
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
trust:
|
||||
org:
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
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:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
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:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
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:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
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:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
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:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
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:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "1", "-r"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "1"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "10"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "10"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "5"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "5"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "1", "-r"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "1"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "10"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "10"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "5"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
command: ["/bin/sh", "/poweroff.sh", "3"]
|
||||
|
@ -1,10 +1,10 @@
|
||||
onboot:
|
||||
- name: test-ns
|
||||
image: linuxkit/test-ns:89b4d611eb4c3a3e4f894d5996711ec177a20c4b
|
||||
image: linuxkit/test-ns:1fca30ea85c94571200d00c7b282c537b537de48
|
||||
command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "5"]
|
||||
mounts: # for runc
|
||||
- type: cgroup
|
||||
options: ["rw"]
|
||||
- name: poweroff
|
||||
image: linuxkit/poweroff:ffd3f539a6f4e67d4cd4ff36503636de35edd7b2
|
||||
image: linuxkit/poweroff:280bd01daa8776fbe1f4d912977f1886b8374834
|
||||
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