Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dflock/docker_aliases
Docker bash aliases - new bash shell commands to make working with Docker containers & images easier.
https://github.com/dflock/docker_aliases
aliases docker docker-aliases dotfiles
Last synced: 12 days ago
JSON representation
Docker bash aliases - new bash shell commands to make working with Docker containers & images easier.
- Host: GitHub
- URL: https://github.com/dflock/docker_aliases
- Owner: dflock
- License: mit
- Created: 2016-01-21T03:03:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-29T01:47:53.000Z (over 7 years ago)
- Last Synced: 2025-01-02T23:27:13.376Z (18 days ago)
- Topics: aliases, docker, docker-aliases, dotfiles
- Language: Shell
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker_aliases
Docker bash aliases - new bash shell commands to make working with Docker containers & images easier.
## Installation
Save the `docker_aliases.sh` file to your home directory. Rename it to `.docker_aliases`:
```bash
curl https://raw.githubusercontent.com/dflock/docker_aliases/master/docker_aliases.sh > ~/.docker_aliases
```Then and add this to your `~/.bashrc` file somewhere:
```bash
if [ -f ~/.docker_aliases ]; then
source ~/.docker_aliases
fi
```Then either close & re-open your terminal windows or do this in each one to make it refresh:
```bash
$ . ~/.bashrc
```## Usage
Installing `docker_aliases` will get you some new commands to use in your bash terminal:
### dps | docker_ps
Enhanced version of `docker ps` which outputs two extra columns:
- **IP** : The private IP address of the container
- **RAM** : The amount of RAM the processes inside the container are using```console
$ dpsCONTAINER ID IMAGE ... NAMES IP RAM
0a3359f50829 23f1a66316b3 ... container-one 172.17.0.139 57 MB
63a1b8ab9fb5 037e0afb42e4 ... container-two 172.17.0.137 490 MB
c9bbee45d255 872fb65cee6d ... container-three 172.17.0.135 1696 MB
```Accepts the same command line switches as `docker ps` - i.e. `dps -a` works.
### docker_wipe
The nuclear option: Delete all containers & images, remove everything in `/var/lib/docker` and restart docker.
**NB: Does not prompt for confirmation.**
```console
$ docker_wipe
```### docker_all | dall
Perform a docker cmd on all docker containers:
```console
$ docker_all start|stop|pause|unpause|
$ dall start|stop|pause|unpause|
```### docker_vol
List the volumes for a given container:
```console
$ docker_vol
```### docker_mem
List the RAM used by a given container.
Used by dps().```console
$ docker_mem
```### docker_id
Return the ID of the container, given the name.
```console
$ docker_id
```### docker_up
Return the status of the named container.
```console
$ docker_up
```### docker_ip
List the IP address for a given container:
Used by dps().```console
$ docker_ip
```### docker_clean | dclean
Remove any dangling images & exited containers
```console
$ docker_clean
$ dclean
```### docker_links | dlinks
List the links for a given container:
```console
docker_links
dlinks
```