Skip to content

Instantly share code, notes, and snippets.

View icalvete's full-sized avatar
🎯
Focusing

Israel Calvete icalvete

🎯
Focusing
  • Fluzo
  • Madrid
View GitHub Profile
# /etc/security/limits.conf
* soft nofile 999999
* hard nofile 999999
root soft nofile 999999
root hard nofile 999999
===========================================================
# /etc/sysctl.conf
# sysctl for maximum tuning
@icalvete
icalvete / docker-log.sh
Last active September 18, 2015 19:02 — forked from yarcowang/docker-log.sh
simple bash script to show log for a docker image
#!/usr/bin/env bash
DOCKER=`which docker`
usage()
{
echo "Usage: $(basename $0) [-l num] IMAGE"
exit 0
}