├── Dockerfile ├── LICENSE ├── README.md └── root ├── .bashrc ├── .gitconfig └── .scripts ├── git-completion.sh ├── git-prompt.sh └── z.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockerfile/ubuntu/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockerfile/ubuntu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockerfile/ubuntu/HEAD/README.md -------------------------------------------------------------------------------- /root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockerfile/ubuntu/HEAD/root/.bashrc -------------------------------------------------------------------------------- /root/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockerfile/ubuntu/HEAD/root/.gitconfig -------------------------------------------------------------------------------- /root/.scripts/git-completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockerfile/ubuntu/HEAD/root/.scripts/git-completion.sh -------------------------------------------------------------------------------- /root/.scripts/git-prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockerfile/ubuntu/HEAD/root/.scripts/git-prompt.sh -------------------------------------------------------------------------------- /root/.scripts/z.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dockerfile/ubuntu/HEAD/root/.scripts/z.sh --------------------------------------------------------------------------------