- Bash/zsh completion
- use Tab to populate command line, narrows down options as you go, fills in container names, ID's, images, volumes. Huge time saver.
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
# NOT FOR SHELL SCRIPT, but rather just for quick copy paste | |
# this is a copy-paste version with defaults of the full shell script docker-xenial.sh which is below this one in gist. | |
apt-get -y install apt-transport-https ca-certificates curl && \ | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && \ | |
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" && \ | |
service lxcfs stop && apt-get remove -y -q lxc-common lxcfs lxd lxd-client && \ | |
apt-get update -q && \ | |
apt-get install -y -q docker-ce && \ | |
printf '{ "userns-remap" : "default" , "storage-driver" : "overlay2" }' > /etc/docker/daemon.json && \ |
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
sudo: required #is required to use docker service in travis | |
language: php #can be any language, just php for example | |
services: | |
- docker # required, but travis uses older version of docker :( | |
install: | |
- echo "install nothing!" # put your normal pre-testing installs here |
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-Executionpolicy RemoteSigned | |
$days=10 #You can change the number of days here | |
$IISLogPath="C:\inetpub\logs\" | |
$ExchangeLoggingPath="C:\Program Files\Microsoft\Exchange Server\V15\Logging\" | |
Function CleanLogfiles($TargetFolder) | |
{ | |
if (Test-Path $TargetFolder) { | |
$Now = Get-Date |
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
#!/bin/sh | |
# store the current dir | |
CUR_DIR=$(pwd) | |
# Update App Store apps | |
sudo softwareupdate -i -a | |
# Update Homebrew (Cask) & packages | |
brew update |
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
[Unit] | |
Description=Docker Application Container Engine | |
Documentation=http://docs.docker.com | |
After=network.target docker.socket | |
Requires=docker.socket | |
| |
[Service] | |
ExecStart= | |
ExecStart=/usr/bin/docker daemon -H fd:// -H unix://var/run/docker.sock --exec-opt native.cgroupdriver=cgroupfs --storage-driver=devicemapper --ip x.x.x.x | |
MountFlags=private |
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: SKS 1.1.5 | |
Comment: Hostname: pgp.mit.edu | |
mQINBFU4Ax4BEADmfzwSV9aXtxkiL6GCmvg3KYr4VmQc1LSqU7RekmbTdxcnPXrsUq7ZrFUD | |
h9zC+cKcjiQFcTyeoEEX/+9Y09tqOLKcqX4EtXozRGlBeAabCwFa9pwAmEb8g62cm7fSVLO+ | |
DFFD6IX9H4rGPLhKNNXXuE3zJWKE4n1aZaXYRHRHUL55+Bgm3hT1Kcos/KnFje2YqDUy4xTk | |
kL4SJQwNoFILdK/ebVK1eaRspf+JMUh5qa5n4ExtpZfiH8vb67X5YaE9skz8AruG6COICH0D | |
fBSOqVnN3RjIWpWvGBAOhznCOrwPedGY+PAQzhOjfnXvtRqIEgZreBretg4ULC4R5VUE+1qA | |
J5IftuymKhlLiCBLgidk0Bh3JTbvH7FSHcLAd6Ljkyq1L3Sg4jQ9ciJpVzyS27eR7c2vft6X |
I hereby claim:
- I am BretFisher on github.
- I am bretfisher (https://keybase.io/bretfisher) on keybase.
- I have a public key whose fingerprint is 3356 2888 3C9F 74C4 8772 B7EA E698 7430 7C9B 2417
To claim this, I am signing this object:
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
#!/bin/sh | |
# install various tools and apps on a fresh Mac | |
# symlink dotfiles | |
source dotfiles.sh | |
# set mac defaults | |
source osxdefaults.sh |