mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 07:15:36 +00:00
The new hiearchy is:
- pkg/{init,mirage-compile}: additional Moby packages
- src/sdk -> the begining of the MirageOS SDK for Moby
- src/dhcp-client -> the code for the MirageOS dhcp-client service
Signed-off-by: Thomas Gazagnaire <thomas@gazagnaire.org>
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
|