Easy Docker is a simple command line tools to use the docker on day-by-day writen in bash.
By default Docker Easy is installed with alias d, but you can specify it during the installation process.
source <(curl -s https://raw.githubusercontent.com/trsouz/easy-docker/master/install_remote.sh)
source <(wget --no-check-certificate https://raw.githubusercontent.com/trsouz/easy-docker/master/install_remote.sh -O -)
git clone https://github.com/trsouz/easy-docker.git $HOME/.easydocker
source $HOME/.easydocker/install.sh
Usage:
d [options] command [command options]
Options:
-f, --force Skip user interaction
-h, --help Display this help and exit
-q, --quiet Quiet (no output)
-v, --verbose Print debug messages
-V, --version Output version information and exit
Commands:
clean Cleanup images or containers
run Run a platform in a new container and remove after exit
d run python
d run node:0.10 -v
- Check if
dockeranddocker-composeare installed and install if not there - Command
aliasto specificrunfor directly use. Something liked alias python python:2.7.9ord alias npm node:0.10 --entrypoint npm - Command
lsto list platforms and versions available for download and already downloaded
What do you need? Let me know or fork.