mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-16 23:29:38 +00:00
31 lines
1.3 KiB
YAML
31 lines
1.3 KiB
YAML
# Simple example of using an external logging service
|
|
kernel:
|
|
image: linuxkit/kernel:6.6.71
|
|
cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
|
|
init:
|
|
- linuxkit/init:680da6e6f79bb8236a095147d532cd2160e23c9f
|
|
- linuxkit/runc:2dfee46421e963d6c0d946137e46fe36fa606d29
|
|
- linuxkit/containerd:838b745e38e43309393675ce3cf04bee9047eb91
|
|
- linuxkit/ca-certificates:a4f15fe71bb0ad7560ff78f48504dd2af500a442
|
|
- linuxkit/memlogd:c5521cc1bb602f8b6343c071e05da596523a4196
|
|
onboot:
|
|
- name: sysctl
|
|
image: linuxkit/sysctl:2fad4cdf96faa97bf7888696b8c3ca00f98137af
|
|
- name: dhcpcd
|
|
image: linuxkit/dhcpcd:4681273eeea47c26d980958656e60fe70d49e318
|
|
command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
|
|
services:
|
|
# Inside the getty type `/proc/1/root/usr/bin/logread -F` to follow the log
|
|
- name: getty
|
|
image: linuxkit/getty:37a16fb37f56ad0aee6532c1a39d780416f7fb80
|
|
env:
|
|
- INSECURE=true
|
|
# A service which generates log messages for testing
|
|
- name: write-to-the-logs
|
|
image: alpine:3.13
|
|
command: ["/bin/sh", "-c", "while /bin/true; do echo hello $(date); sleep 1; done" ]
|
|
- name: write-and-rotate-logs
|
|
image: linuxkit/logwrite:8a0a9aa499adcd30fd6729a29e0567b14a4d468f
|
|
- name: kmsg
|
|
image: linuxkit/kmsg:c4616ea416202761421215ee1783108610175126
|