Skip to content

Instantly share code, notes, and snippets.

@pawelkomarnicki
Last active August 14, 2018 09:56
Show Gist options
  • Save pawelkomarnicki/991492e0c326894d22d6dba194f7a063 to your computer and use it in GitHub Desktop.
Save pawelkomarnicki/991492e0c326894d22d6dba194f7a063 to your computer and use it in GitHub Desktop.
Bash profile things
export PS1="\w » "
export EDITOR=code
# Requires file from https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash
source ~/git-completion.bash
# Make docker-compose commands shorter
alias dcb='docker-compose build'
alias dcu='docker-compose up'
alias dcd='docker-compose down'
function dcr() {
docker-compose run --rm $1-task ${@:2:99}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment