dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit 16b35517ee076709d38006e3cd2b4df629630db3 (patch)
parent a1468f779ece74e01e4d501ed238904d95d23022
Author: Alexander Karle <akarle@umass.edu>
Date:   Mon,  1 Oct 2018 00:27:57 -0400

Add Docker setup to README

Diffstat:
MREADME.md | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -14,3 +14,19 @@ Note that bash is required for this install (as some of the interactive options ``` bash -c "$(curl -fsSL https://raw.githubusercontent.com/akarle/dotfiles/master/install.sh)" ``` + +## Trying it Out + +You can try these on for size in a completely isolated environment by using +Docker (which must be installed separately). + +```sh +# From within this repo, build from Dockerfile +docker build -t akarledots . + +# Run container interactively +docker run -it akarledots + +# ------ INSIDE CONTAINER ------ +./install.sh +```