This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e -o pipefail | |
| shopt -s extglob | |
| export LC_ALL=C | |
| CONTAINER="" | |
| INTER_GATEWAY="192.168.30.0/24" | |
| INTER_IP_HOST="192.168.30.1/32" | |
| INTER_IP_CONT="192.168.30.2/32" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;(function (root, factory) { | |
| if (typeof exports === "object") { | |
| // CommonJS | |
| module.exports = exports = factory(); | |
| } | |
| else if (typeof define === "function" && define.amd) { | |
| // AMD | |
| define([], factory); | |
| } | |
| else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible | |
| set history=500 | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'VundleVim/Vundle.vim' | |
| Plugin 'scrooloose/nerdtree' |
NewerOlder