Skip to content
This repository has been archived by the owner on Dec 7, 2018. It is now read-only.

Latest commit

 

History

History
37 lines (25 loc) · 894 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 894 Bytes

Dotfiles: Docker

This is my docker dotfiles storage

Installation

1. Get the code

You can install this repository using either one of these method:

Using bootstrap script

bash <(curl -sL https://raw.githubusercontent.com/aegypius/dotfiles-docker/master/bootstrap.bash)

Using homeshick

homesick clone aegypius/dotfiles-docker

2. Inject it in your environment

Then you need to update your .bashrc with the following code:

# Source everything in ~/bashrc.d {{{
if [ -d ~/.bashrc.d ]; then
  for script in ~/.bashrc.d/*; do
    test -f $script && source $script;
  done;
fi
# }}}

See Also