mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 00:05:25 +00:00 
			
		
		
		
	* containerd to semver v2.0.3 Signed-off-by: Avi Deitcher <avi@deitcher.net> * containerd v2.0.3 plus commits to fix blkdiscard Signed-off-by: Avi Deitcher <avi@deitcher.net> * update containerd-dev dependencies Signed-off-by: Avi Deitcher <avi@deitcher.net> * updated pkg/init and pkg/containerd deps Signed-off-by: Avi Deitcher <avi@deitcher.net> --------- Signed-off-by: Avi Deitcher <avi@deitcher.net>
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
kernel:
 | 
						|
  image: linuxkit/kernel:6.6.71
 | 
						|
  cmdline: "console=tty0 console=ttyS0 console=ttyAMA0"
 | 
						|
init:
 | 
						|
  - linuxkit/init:8eea386739975a43af558eec757a7dcb3a3d2e7b
 | 
						|
  - linuxkit/runc:667e7ea2c426a2460ca21e3da065a57dbb3369c9
 | 
						|
  - linuxkit/containerd:a988a1a8bcbacc2c0390ca0c08f949e2b4b5915d
 | 
						|
  - linuxkit/ca-certificates:7b32a26ca9c275d3ef32b11fe2a83dbd2aee2fdb
 | 
						|
onboot:
 | 
						|
  - name: dhcpcd
 | 
						|
    image: linuxkit/dhcpcd:157df9ef45a035f1542ec2270e374f18efef98a5
 | 
						|
    command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"]
 | 
						|
services:
 | 
						|
  - name: getty
 | 
						|
    image: linuxkit/getty:05eca453695984a69617f1f1f0bcdae7f7032967
 | 
						|
    env:
 | 
						|
     - INSECURE=true
 | 
						|
  - name: influxdb
 | 
						|
    image: influxdb:1.7
 | 
						|
    net: host
 | 
						|
    capabilities:
 | 
						|
      - CAP_NET_BIND_SERVICE
 | 
						|
      - CAP_DAC_OVERRIDE
 | 
						|
  - name: kapacitor
 | 
						|
    image: kapacitor:1.5
 | 
						|
    net: host
 | 
						|
    capabilities:
 | 
						|
      - all
 | 
						|
    env:
 | 
						|
      - KAPACITOR_INFLUXDB_0_URLS_0=http://influxdb:8086
 | 
						|
  - name: telegraf
 | 
						|
    image: telegraf:1.9
 | 
						|
    net: host
 | 
						|
    capabilities:
 | 
						|
      - all
 | 
						|
  - name: chronograf
 | 
						|
    image: chronograf:1.7
 | 
						|
    net: host
 | 
						|
    capabilities:
 | 
						|
      - CAP_NET_BIND_SERVICE
 | 
						|
      - CAP_DAC_OVERRIDE
 | 
						|
    env:
 | 
						|
      - INFLUXDB_URL=http://127.0.0.1:8086
 | 
						|
      - KAPACITOR_URL=http://127.0.0.1:9092
 |