KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
docker-wrapper
★ 10
Open GitHub ↗
Docker command wrapper.
Download README (.md)
Explore Similar Repositories
a2c-acktr-vizdoom
:
A2C, ACKTR and A2T implementations for ViZDoom
tvvar_paper
:
Reproducibility Archive for paper: "A Tutorial on Estimating Time-Varying Vector Autoregressive Models"
Background-Subtraction
:
GMM model for subtracting background from foreground
vscode-settings
:
My personal Visual Studio Code settings.
platform3
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
docker-wrapper
?
Download (.md)
# [docker-wrapper](https://godoc.org/github.com/clarketm/docker-wrapper) Docker command wrapper. > The `docker-wrapper` command is a **complete** superset of the `docker` command. It is a wrapper that shims the native `docker` command with useful aliases and helpers to enhance your docker workflow. This may go without saying, but `docker` is a required dependency for `docker-wrapper`. ## Installation #### Golang ```shell $ go get -u github.com/clarketm/docker-wrapper ``` #### Install script ```shell $ git clone "https://github.com/clarketm/docker-wrapper.git" $ cd docker-wrapper && sudo sh install.sh ``` ## Usage ```bash $ docker-wrapper wrapper --help ``` ```text NAME: docker-wrapper – docker command wrapper. SYNOPSIS: docker-wrapper subcommand [opts...] SUB COMMANDS: b, build Build an image from a Dockerfile. e, exec Run a command in a running container. -b, --bash Execute bash in a running container. -i, --interactive Execute command in interactive container. -s, --shell Execute sh in a running container. g, go Navigate to a docker internal storage dicetory (Linux ONLY). i, images List images. -d, --dangling List all dangling images. -v, --verbose List all images (non-truncated output). ip List IP address(es) for container. p, ps List containers. prune Remove unused resources. -a, --all Remove all unused resources (containers, images, networks, volumes). c, containers Remove all unused containers. i, images Remove all unused images. n, networks Remove all unused networks. v, volumes Remove all unused volumes. rm Remove one or more containers. -a, --all Remove all containers. -e, --exited Remove all exited containers. -r, --running Remove all running containers. rmi Remove one or more images. -a, --all Remove all base images. -d, --dangling Remove all dangling images. -i, --intermediate Remove all images (both base AND intermediate). r, run Run a command in a new container. -i, --interactive Run interactive container. s, stop Stop one or more running containers. -a, --all Stop all processes/containers. w, wrapper Docker wrapper specific options. -h, --help Print usage information. -v, --version Print version number. cs, cheatsheet Print docker command reference guide. MANAGEMENT COMMANDS: cnf, conf, cnfg, config Manage containers. c, container Manage containers. im, img, image Manage images. n, net, network Manage networks. no, node Manage Swarm node. se, svc, service Manage services. st, stack Manage Docker stacks. sw, swarm Manage Swarm. v, vol, volume Manage volumes. ls List volumes. -d, --dangling List all dangling volumes. rm Remove one or more volumes. -d, --dangling Remove all dangling volumes. EXAMPLES: docker-wrapper wrapper --help ``` ## TODO (before v1.0.0 release): - [x] Cross-platform compilation for Darwin and Linux - [ ] Add completions