mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-07 22:55:14 +00:00
10 lines
182 B
Bash
Executable File
10 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# bring up containerd
|
|
ulimit -n 1048576
|
|
ulimit -p unlimited
|
|
|
|
printf "\nStarting containerd\n"
|
|
mkdir -p /var/log
|
|
/sbin/start-stop-daemon --start --exec /usr/bin/containerd
|