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

docker dedicated dotfiles

License

Notifications You must be signed in to change notification settings

aegypius/dotfiles-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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