Skip to content

This python cli tool automates operations with docker containers by utilizing the Docker Remote API.

License

Notifications You must be signed in to change notification settings

tmavroeid/bendu

Repository files navigation

bendu

luds3 header

linting: pylint Python 3.9.7 release passing Github vulnerabilities GitHub tag (latest by date) visitors

Table of Contents

Introduction

This python tool automates operations with docker containers by utilizing the Docker Remote API. This python tool implements the following:

  • Building a Docker Image from a given Dockerfile and an application (a ‘Hello world’ web application)
  • Starting a few instances of the Docker Image in different containers
  • Validating that the container instances are running
    • Validating the status of the service running inside the container (health check)
  • Monitoring the resource usage of each container (CPU, I/O, etc)
  • Consolidating the log output of all the container instances into one centralized log file.

Getting Started

Prerequisites

Please make sure you've already Python3. The tool is utilizing the Docker Remote API , the Python SDK for Docker and the python package Click. The Remote API is set up in tcp://0.0.0.0:2376. For the purpose of using the tool, you should set up the Remote API likewise. The following instructions apply to Ubuntu 16.04 and Debian 9.9 (stretch).

Install the Python SDK and Click:

apt-get install python3-pip
pip3 install docker
pip3 install click

Edit the file:

sudo nano /lib/systemd/system/docker.service

Update with:

ExecStart=/usr/bin/dockerd -H fd:// -H tcp://0.0.0.0:2376

Then, restart the docker service running below commands:

sudo systemctl daemon-reload
sudo systemctl restart docker
sudo systemctl status docker

For older versions than Ubuntu 16.04 you can use the instructions in the following source, Enabling and accessing Docker Engine API on a remote docker host on Ubuntu

Usage

The tool is equipped with five commands: build, deploy, validate, stats and logging as presented below:

python3 bendu.py [build, deploy, validate, stats, logging] --help

Testing

To test the python tool follow the instructions below.

  1. First install virtual environment:
apt-get install virtualenv
  1. Then, in the same depth as the project make a folder named venv:
mkdir venv
  1. Execute the following command:
virtualenv -p python3 venv/
  1. Get up and running a virtual environment by running executing:
. venv/bin/activate
pip3 install --editable .
  1. Finally, execute the build command to build the image according the instructions that are defined in a Dockerfile:
bendu --help
bendu build -d ./data -t "alpine_hello_world:1"
  1. Exit virtual environment by invoking:
deactivate

Help

Each one of these commands has each one functionality which can be over-viewed by invoking each command followed by --hep.

Technologies

"Buy Me A Coffee"

About

This python cli tool automates operations with docker containers by utilizing the Docker Remote API.

Resources

License

Stars

Watchers

Forks

Packages

No packages published