Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View wirwolf's full-sized avatar

Andru Cherny wirwolf

View GitHub Profile
@wirwolf
wirwolf / containerd-prune.sh
Last active September 1, 2021 13:40 — forked from cirocosta/containerd-prune
prune containerd stuff
#!/bin/bash
set -o errexit
set -o xtrace
main() {
local namespaces=$(list_namespaces)
for namespace in $namespaces; do
local tasks=$(list_tasks $namespace)
@wirwolf
wirwolf / daemon.json
Created July 9, 2020 10:00
Example Docker daemon.json
{
"api-cors-header": "",
"authorization-plugins": [],
"bip": "",
"bridge": "",
"cgroup-parent": "",
"cluster-store": "",
"cluster-store-opts": {},
"cluster-advertise": "",
"debug": true,
@wirwolf
wirwolf / Andru Cherny.md
Created June 8, 2019 07:27 — forked from ravage84/Firstname Lastname.md
Use this template to introduce yourself to the rest of the new PHPMD maintainer team

Andru Cherny

Nickname:

wir_wolf

Email:

wiroatom[d.o.g.g]gmail[a.t]com

GitHub Profile:

@wirwolf
wirwolf / nginx.conf
Created January 21, 2016 12:49
Nginnx config for Yii 2 Advanced App Template (subdomains)
# frontend
server {
listen 80;
server_name yii2.lo;
server_tokens off;
client_max_body_size 128M;
charset utf-8;
access_log /var/log/nginx/yii2-access.log main buffer=50k;