Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nandoquintana/docker-missing-tools
Docker missing tools
https://github.com/nandoquintana/docker-missing-tools
bash devops docker ubuntu
Last synced: about 2 months ago
JSON representation
Docker missing tools
- Host: GitHub
- URL: https://github.com/nandoquintana/docker-missing-tools
- Owner: nandoquintana
- Created: 2017-11-22T08:22:51.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-01T13:10:10.000Z (over 6 years ago)
- Last Synced: 2024-07-31T21:57:14.453Z (5 months ago)
- Topics: bash, devops, docker, ubuntu
- Language: Shell
- Size: 28.3 KB
- Stars: 25
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-docker - Docker Missing Tools - A set of bash commands to shortcut typical docker dev-ops. An alternative to creating typical helper scripts like "build.sh" and "deploy.sh" inside code repositories. By [@NandoQuintana](https://github.com/nandoquintana). (Development with Docker / Development Environment)
- awesome-docker - Docker Missing Tools - A set of bash commands to shortcut typical docker dev-ops. An alternative to creating typical helper scripts like "build.sh" and "deploy.sh" inside code repositories. By [@NandoQuintana](https://github.com/nandoquintana). (Development with Docker / Development Environment)
README
# Docker Missing Tools
A set of commands to make docker dev-ops easier.
Docker Missing Tools help to automate dev-ops tasks without including noise to source code.
Avoid creating typical helper scripts like "build.sh" and "deploy.sh" inside shared code repositories.
## ls
List everything (stacks, services, container, images, volumes) at once:
```
$ docker_ls
```## reset
Remove everything (except volumes) at once:
```
$ docker_reset
```## init
Initialize a swarm:
```
$ docker_init
```## build and deploy
Create an image from your source code (and a Dockerfile) and deploy it (according a docker-stack.yml) with the rest of the stack:
```
$ docker_build_and_deploy TARGET IMAGE STACK [docker-stack.yml] [Dockerfile]
```
Arguments description:
- TARGET: is the directory with the source code to build.
- IMAGE: is the name for the new image.
- STACK: is the name for the new stack.
- docker-stack.yml: (optional) is the YML file where the new stack is defined.
- Dockerfile: (optional) is the Docker file where the new image is defined (must exist inside TARGET directory).## build and release
Create an image from your source code (and a Dockerfile) and upload it to a Docker registry:
```
docker_build_and_release TARGET IMAGE VERSION REPOSITORY [Dockerfile]
```
Arguments description:
- TARGET: is the directory with the source code to build.
- IMAGE: is the name for the new image.
- VERSION: is the tag for the new image.
- REPOSITORY: is the Docker repository where image will be uploaded to.
- Dockerfile: (optional) is the Docker file where the new image is defined (must exist inside TARGET directory).## deploy
Deploy an stack (docker-stack.yml):
```
docker_deploy STACK [docker-stack.yml]
```
Arguments description:
- STACK: is the name for the new stack.
- docker-stack.yml: (optional) is the YML file where the new stack is defined.## logs
Display logs from containers in any status:
```
docker_logs STACK
```
Arguments description:
- STACK: filter containers by stack name.## logs up
Display logs from containers in "running" status:
```
docker_logs_up STACK
```
Arguments description:
- STACK: filter containers by stack name.## logs down
Display logs from containers in "created", "restarting", "removing", "paused", "exited" or "dead" status:
```
docker_logs_down STACK
```
Arguments description:
- STACK: filter containers by stack name.## logs from service
Display logs from dockerd service:
```
docker_logs_f
```# Install Docker Missing Tools
Get the scripts and move them to local "bin" directory:
```
git clone https://github.com/nandoquintana/docker-missing-tools.git ~/docker_missing_tools
cd ~/docker_missing_tools
./docker_missing_tools_install.sh
```
Update your Docker repositories credentials file:
```
emacs ~/.docker_missing_tools_repositories
```Include your URLs, USERs and PASSs there in [.netrc file format](https://www.gnu.org/software/inetutils/manual/html_node/The-_002enetrc-file.html). For example:
```
machine docker.io/my-username
login my-username
password my-passwordmachine my-repository.my-domain.com
login "[email protected]"
password my-password```
Remember to install [Python](https://packages.ubuntu.com/python) and [Docker CE](https://docs.docker.com/install/linux/docker-ce/ubuntu/) :-)
# Uninstall Docker Missing Tools
```
cd ~/docker_missing_tools
./docker_missing_tools_uninstall.sh
```