Docker entrypoint tool
Project description
Encab: A Docker Entrypoint Tool
Encab is essentially a replacement for complex, hand-written Docker Container Entrypoint scripts, especially when dockerizing complex legacy applications.
- Add it as your Dockerfile Entrypoint,
together with the encab configuration file
encab.yml
,
...
ADD encab.yml .
ENTRYPOINT ["encab"]
- Define what you want to run in your container in
encab.yml
,
programs:
cron:
command: cron -f
main:
command: httpd-foreground
and encab cares for the rest. Run it and you'll always know who's logging what...
INFO encab: encab 0.0.3
INFO encab: Using configuration file ./encab.yml, source: Default location.
ERROR main: AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message
ERROR main: AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2. Set the 'ServerName' directive globally to suppress this message
ERROR main: [Wed Jan 18 09:47:12.417275 2023] [mpm_event:notice] [pid 12:tid 140142563044672] AH00489: Apache/2.4.54 (Unix) configured -- resuming normal operations
ERROR main: [Wed Jan 18 09:47:12.417830 2023] [core:notice] [pid 12:tid 140142563044672] AH00094: Command line: 'httpd -D FOREGROUND'
INFO cron: Hello Wed Jan 18 09:48:01 UTC 2023
It shares some similarities with supervisord which I've used before I wrote encab but supervisord is a process controll system not designed to run in a Container environment.
Note
This tool is still under development. Sufficient for local experiments but not mature enough for production use!
Features
- run multiple programs in a container at a time with transparent logging
- run programs as different users
- handle environment variables in a flexible way
- simplify container debugging
- load, build, validate environment variables
Documentation
Installation
Install locally
Prerequisites
- Python Version >= 3.7
- activated Python virtual environment such as [miniconda][2] or [virtualenv][3]
pip install -U encab
Run locally
- Create sample encab file
encab.yml
encab:
dry_run: false
programs:
main:
sh:
- echo "Hello Encab!"
- Run locally:
encab
The result will be something like this:
INFO encab: encab 0.0.3
INFO encab: Using configuration file ./encab.yml, source: Default location.
INFO main: Hello Encab!
INFO main: Exited with rc: 0
Install in Container
Prerequisites
- Docker from your Linux distribution or Docker Desktop.
Run in Container
- Create sample encab file
encab.yml
encab:
dry_run: false
programs:
main:
sh:
- echo "Hello Encab!"
-
Add Encab to your Docker file.
FROM python:3.10.8-slim-bullseye # -------------------------------------------- # Install Venv # ENV VIRTUAL_ENV=/opt/encabenv ENV PATH="$VIRTUAL_ENV/bin:$PATH" RUN python3 -m venv $VIRTUAL_ENV && \ pip install --upgrade pip # -------------------------------------------- # Install Encab # RUN pip install encab # ------------------------------------------- # add configuration file # ADD encab.yml . # ------------------------------------------- # set encab as entrypoint ENTRYPOINT ["encab"]
-
Build container
docker build -t encab_minimum .
-
Run container
docker run encab_minimum
Result:
INFO encab: encab 0.0.3 INFO encab: Using configuration file ./encab.yml, source: Default location. INFO main: Hello world! INFO main: Exited with rc: 0
Similar Projects
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file encab-0.0.5.tar.gz
.
File metadata
- Download URL: encab-0.0.5.tar.gz
- Upload date:
- Size: 23.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99522f45f1b088a3445f8878953ffdad28f66d3ac17b8012d09ad16dd80fb85d |
|
MD5 | 52c9bcc1c426037a95bf84a1aeccc715 |
|
BLAKE2b-256 | 4c903204603b0fc12aa904d5913f552e25991fc5b6dfb6ede68a4e705243d986 |
File details
Details for the file encab-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: encab-0.0.5-py3-none-any.whl
- Upload date:
- Size: 26.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ccbe479fc323dd98f3e63f89ada3ee617d6893a128c0aa8c5ffe89a5f7f741a5 |
|
MD5 | 25a3847c6f571812b1240bcf03afa4a1 |
|
BLAKE2b-256 | 6e286bafe72b556fad3180a877f973956193dff7749dcba67643963e4a80ed10 |