Skip to content

Instantly share code, notes, and snippets.

View strund3r's full-sized avatar

Franzwagner Ternus strund3r

View GitHub Profile
#!/bin/bash
clear
function version_gt() { test "$(echo "$@" | tr " " "\n" | sort -V | head -n 1)" != "$1"; }
function version_le() { test "$(echo "$@" | tr " " "\n" | sort -V | head -n 1)" == "$1"; }
function version_lt() { test "$(echo "$@" | tr " " "\n" | sort -rV | head -n 1)" != "$1"; }
printf "\n\n"
#!/bin/bash
# carregando configurações via params
for i in $*
do
if [[ "$i" == '-y' || "$i" == '-Y' ]] ; then
all_alowed=true
fi
done
https://docs.google.com/document/d/1ez-CoBwxVhxPodNQkxvkipEYwyixrpAHavwipovwf8k/edit
https://docs.google.com/document/d/1Z35otIj_LK9Sq8xSXku8Fba6PdhYZbgncBHWkVivL6k/edit
# Operations - Beginner
## Deploying a local registry
Erro: Get https://localhost:5000/v1/_ping: http: server gave HTTP response to HTTPS client
Solução: 1. Criar ou modificar /etc/docker/daemon.json
{ "insecure-registries":["localhost:5000"] }
@strund3r
strund3r / .bashrc
Last active June 20, 2017 15:02
change color bash
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac