mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-02 04:28:28 +00:00
Only those which used the same value as linuxkit.yml are updated. Signed-off-by: Ian Campbell <ijc@docker.com>
33 lines
896 B
YAML
33 lines
896 B
YAML
# Minimal YAML to run a redis server (used at DockerCon'17)
|
|
# connect: nc localhost 6379
|
|
kernel:
|
|
image: linuxkit/kernel:4.9.36
|
|
cmdline: "console=tty0 console=ttyS0"
|
|
init:
|
|
- linuxkit/init:14a38303ee9dcb4541c00e2b87404befc1ba2083
|
|
- linuxkit/runc:a0f2894e50bacbd1ff82be41edff8b8e06e0b161
|
|
- linuxkit/containerd:389e67c3c1fc009c1315f32b3e2b6659691a3ad4
|
|
onboot:
|
|
- name: dhcpcd
|
|
image: linuxkit/dhcpcd:4b7b8bb024cebb1bbb9c8026d44d7cbc8e202c41
|
|
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
|
services:
|
|
- name: getty
|
|
image: linuxkit/getty:0bd92d5f906491c20e4177c57f965338fe5a8c5f
|
|
env:
|
|
- INSECURE=true
|
|
- name: redis
|
|
image: redis:3.0.7-alpine
|
|
capabilities:
|
|
- CAP_NET_BIND_SERVICE
|
|
- CAP_CHOWN
|
|
- CAP_SETUID
|
|
- CAP_SETGID
|
|
- CAP_DAC_OVERRIDE
|
|
net: host
|
|
trust:
|
|
org:
|
|
- linuxkit
|
|
image:
|
|
- redis:3.0.7-alpine
|