ulimit -n 1048576
if [ "$BASH" ]; then
ulimit -u 1048576
else
ulimit -p 1048576
fi
DhyveOS has much smaller limits, and although they can be changed using --ulimit when doing docker run, this causes some images that work using the Debian docker to fail with DyhveOS. It would be cool if these limits could be increased.
The default docker Debian package sets
DhyveOS has much smaller limits, and although they can be changed using
--ulimit
when doingdocker run
, this causes some images that work using the Debian docker to fail with DyhveOS. It would be cool if these limits could be increased.