https://github.com/pmav99/ubuntu_docker_images
https://github.com/pmav99/ubuntu_docker_images
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pmav99/ubuntu_docker_images
- Owner: pmav99
- Created: 2017-01-03T14:27:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-27T10:40:13.000Z (over 7 years ago)
- Last Synced: 2024-06-13T17:18:44.724Z (12 months ago)
- Language: Shell
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## overview
Custom ubuntu-based docker images with my own dotfiles etc.
I mainly use them combined with the following bash/zsh functions:
```
u14() {
if [ ! -z $1 ]
then
echo $@
docker run --rm $@ -it u14:latest
else
docker run --rm -it u14:latest
fi
}u16() {
if [ ! -z $1 ]
then
echo $@
docker run --rm $@ -it u16:latest
else
docker run --rm -it u16:latest
fi
}```