mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 03:41:56 +00:00 
			
		
		
		
	With 561ce6f4be ("Remove Notary and Content Trust") we
removed support for content trust. No need to have it
in the YAMLs either.
Signed-off-by: Rolf Neugebauer <rn@rneugeba.io>
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			998 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			998 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# Minimal YAML to run a redis server (used at DockerCon'17)
 | 
						|
# connect: nc localhost 6379
 | 
						|
kernel:
 | 
						|
  image: linuxkit/kernel:5.10.47
 | 
						|
  cmdline: "console=tty0 console=ttyS0 console=ttyAMA0 console=ttysclp0"
 | 
						|
init:
 | 
						|
  - linuxkit/init:78fb57c7da07c4e43c3a37b27755581da087a3b6
 | 
						|
  - linuxkit/runc:bf1e0c61fb4678d6428d0aabbd80db5ea24e4d4d
 | 
						|
  - linuxkit/containerd:cc02c2af9c928c2faeccbe4edc78bd297ad91866
 | 
						|
onboot:
 | 
						|
  - name: dhcpcd
 | 
						|
    image: linuxkit/dhcpcd:1033f340e2d42f86a60aab70752346f0045ea388
 | 
						|
    command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
 | 
						|
services:
 | 
						|
  - name: getty
 | 
						|
    image: linuxkit/getty:ed32c71531f5998aa510847bb07bd847492d4101
 | 
						|
    env:
 | 
						|
     - INSECURE=true
 | 
						|
  # Currently redis:4.0.6-alpine has trust issue with multi-arch
 | 
						|
  # https://github.com/docker-library/official-images/issues/3794
 | 
						|
  - name: redis
 | 
						|
    image: redis:4.0.5-alpine
 | 
						|
    capabilities:
 | 
						|
     - CAP_NET_BIND_SERVICE
 | 
						|
     - CAP_CHOWN
 | 
						|
     - CAP_SETUID
 | 
						|
     - CAP_SETGID
 | 
						|
     - CAP_DAC_OVERRIDE
 | 
						|
    net: host
 |