mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| kernel:
 | |
|   image: linuxkit/kernel:4.9.40
 | |
|   cmdline: "console=tty0 console=ttyS0"
 | |
| init:
 | |
|   - linuxkit/init:e3e376881faced5a890b6ceb3e8e899cbfd04ecd
 | |
|   - linuxkit/runc:842318b6ab524783554428c89a27d95af7bd2844
 | |
|   - linuxkit/containerd:1ff17c0908bed91a7bff252fba2e3d360d05a3de
 | |
|   - linuxkit/ca-certificates:67acf038c44bb191ebb704ec7bb39a1524052cdf
 | |
| onboot:
 | |
|   - name: sysctl
 | |
|     image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0
 | |
|   - name: binfmt
 | |
|     image: linuxkit/binfmt:257b5174a8e33bc62d5448cc026d72cae3713628
 | |
|   - name: dhcpcd
 | |
|     image: linuxkit/dhcpcd:17423c1ccced74e3c005fd80486e8177841fe02b
 | |
|     command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
 | |
| onshutdown:
 | |
|   - name: shutdown
 | |
|     image: busybox:latest
 | |
|     command: ["/bin/echo", "so long and thanks for all the fish"]
 | |
| services:
 | |
|   - name: getty
 | |
|     image: linuxkit/getty:58620cff1b0bf8b5d144d087602115e996f18a02
 | |
|     env:
 | |
|      - INSECURE=true
 | |
|   - name: rngd
 | |
|     image: linuxkit/rngd:6565ae49f6be29d4e64614a4df3978b972956ebf
 | |
|   - name: nginx
 | |
|     image: nginx:alpine
 | |
|     capabilities:
 | |
|      - CAP_NET_BIND_SERVICE
 | |
|      - CAP_CHOWN
 | |
|      - CAP_SETUID
 | |
|      - CAP_SETGID
 | |
|      - CAP_DAC_OVERRIDE
 | |
| files:
 | |
|   - path: etc/containerd/config.toml
 | |
|     contents: |
 | |
|       state = "/run/containerd"
 | |
|       root = "/var/lib/containerd"
 | |
|       snapshotter = "io.containerd.snapshotter.v1.overlayfs"
 | |
|       differ = "io.containerd.differ.v1.base-diff"
 | |
|       subreaper = false
 | |
| 
 | |
|       [grpc]
 | |
|       address = "/run/containerd/containerd.sock"
 | |
|       uid = 0
 | |
|       gid = 0
 | |
| 
 | |
|       [debug]
 | |
|       address = "/run/containerd/debug.sock"
 | |
|       level = "info"
 | |
| 
 | |
|       [metrics]
 | |
|       address = ":13337"
 | |
|   - path: etc/linuxkit-config
 | |
|     metadata: yaml
 | |
| trust:
 | |
|   org:
 | |
|     - linuxkit
 | |
|     - library
 |