├── README.md ├── elvish └── README.md ├── fish-shell ├── Dockerfile ├── README.md ├── docker-entrypoint.sh └── greeting ├── oh-my-zsh ├── Dockerfile ├── README.md ├── docker-entrypoint.sh └── greeting ├── pipenv ├── Dockerfile ├── README.md ├── config.fish └── myproject │ └── main.py ├── poetry ├── Dockerfile └── README.md ├── telegraf ├── Dockerfile ├── README.md └── docker-entrypoint.sh └── ubuntu └── 18.04 ├── Dockerfile └── config.fish /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/README.md -------------------------------------------------------------------------------- /elvish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/elvish/README.md -------------------------------------------------------------------------------- /fish-shell/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/fish-shell/Dockerfile -------------------------------------------------------------------------------- /fish-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/fish-shell/README.md -------------------------------------------------------------------------------- /fish-shell/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/fish-shell/docker-entrypoint.sh -------------------------------------------------------------------------------- /fish-shell/greeting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/fish-shell/greeting -------------------------------------------------------------------------------- /oh-my-zsh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/oh-my-zsh/Dockerfile -------------------------------------------------------------------------------- /oh-my-zsh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/oh-my-zsh/README.md -------------------------------------------------------------------------------- /oh-my-zsh/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/oh-my-zsh/docker-entrypoint.sh -------------------------------------------------------------------------------- /oh-my-zsh/greeting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/oh-my-zsh/greeting -------------------------------------------------------------------------------- /pipenv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/pipenv/Dockerfile -------------------------------------------------------------------------------- /pipenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/pipenv/README.md -------------------------------------------------------------------------------- /pipenv/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/pipenv/config.fish -------------------------------------------------------------------------------- /pipenv/myproject/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/pipenv/myproject/main.py -------------------------------------------------------------------------------- /poetry/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/poetry/Dockerfile -------------------------------------------------------------------------------- /poetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/poetry/README.md -------------------------------------------------------------------------------- /telegraf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/telegraf/Dockerfile -------------------------------------------------------------------------------- /telegraf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/telegraf/README.md -------------------------------------------------------------------------------- /telegraf/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/telegraf/docker-entrypoint.sh -------------------------------------------------------------------------------- /ubuntu/18.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/ubuntu/18.04/Dockerfile -------------------------------------------------------------------------------- /ubuntu/18.04/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootnroll/library/HEAD/ubuntu/18.04/config.fish --------------------------------------------------------------------------------