From 36173c32ed288e1e0e1682bc94c875b1558f2c5e Mon Sep 17 00:00:00 2001 From: Nicolas Setton Date: Wed, 6 Feb 2019 15:01:42 -0500 Subject: [PATCH] Add process limits to the container --- infrastructure/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/Makefile b/infrastructure/Makefile index 9dcd824..a712a01 100644 --- a/infrastructure/Makefile +++ b/infrastructure/Makefile @@ -10,7 +10,7 @@ create_container: lxc list | grep safecontainer || \ (lxc launch ubuntu:`cat /etc/issue | cut -d ' ' -f2 | cut -d '.' -f 1-2` safecontainer -s default && \ # wait a bit to allow network to come up \ - sleep 5) + sleep 5 ; lxc config set safecontainer limits.processes 300 ) setup_container: # install this first!