Skip to main content

Docker Entrypoint

docker-entrypoint is a basic utility to proxy a container's normal entrypoint. This avoid a few pitfalls in developing and debugging processes running in kubernetes pods, namely:

  • Starting/stopping debugging sessions without restarting the container, and subsequently losing state of the filesystem.
  • Changing environment variables without restarting the container, so environment changes can be made without redeploying to kubernetes.

How to Install

docker-entrypoint can be installed in your docker image via pip:

pip install docker-entrypoint

Since there is no mechanism for injecting the entrypoint script into your image, you'll likely want to install docker-entrypoint at image build time (i.e. in your Dockerfile). Here's a basic, incomplete example:

FROM python:3.7
...
# Install via pip:
RUN pip install docker-entrypoint

# Continue as normal:
WORKDIR /path/to/my/app
ENTRYPOINT ["python", "main.py"]

How to Use

Running your process through entrypoint

docker-entrypoint will install an entrypoint driver globally which accepts your normal entrypoint command as arguments.

root@my-pod:/path/to/my/app# entrypoint python main.py

Since entrypoint must be running as PID 1 in the pod's container to have any value, we must modify the configured entrypoint for the container at launch. There are two options to do so.

Option one: Kubernetes Container Spec

Specify an alternate entrypoint in the container spec for your pod/deploy/statefulset manifest:

spec:
  containers:
  - name: my-app
    command: ["entrypoint"]
    args: ["python", "main.py"]

Option two: Dockerfile ENTRYPOINT

Use entrypoint as your entrypoint in the Dockerfile itself:

FROM python:3.7
...
# Install via pip:
RUN pip install docker-entrypoint

# Note the ENTRYPOINT change:
WORKDIR /path/to/my/app
ENTRYPOINT ["entrypoint", "python", "main.py"]

Starting a debug session

Simply import the Debugger class, make an instance, and call Debugger.start()

from entrypoint.debug import Debugger

dbg = Debugger()
dbg.start() # Will wait for debugger to attach, depending on configuration.

docker-entrypoint includes a module that supports remote debugging for VS Code and PyCharm. The Debugger class currently makes several assumptions:

Environment Variable Valid Options Default
DEBUGGER_ENABLED true, false false
DEBUGGER_ADDRESS any hostname/IP localhost
DEBUGGER_EDITOR vscode, pycharm vscode
DEBUGGER_WAIT true, false true

These values are pulled from a "dotenv" file located at /tmp/.env. This is hardcoded. Additionally, the ports used for forwarding and reverse forwarding are hardcoded to 9000 and 9001, respectively. When launching port-forwarding commands, be sure to use these ports for the pod-side binding.

Get the name of your pod:

POD_NAME=$(kubectl get pods -l release=my-app --field-selector status.phase=Running -o jsonpath={.items[0].metadata.name})

Restart your process. This does not restart your container, only the process being managed by entrypoint.

kubectl exec $POD_NAME -- bash -c "kill -HUP 1"

Environment variables are loaded from the in-pod .env file prior to each launch of the debugger, so they can be updated on-demand from a local .env file. Simply copy your local .env file into the pod and restart your process. Again, this does not restart the container.

kubectl cp .env $POD_NAME:/tmp/.env
kubectl exec $POD_NAME -- bash -c "kill -HUP 1"

For IDEs that create a debug server and require the remote process to attach to it (i.e. PyCharm), Debugger.start() will wait until SIGUSR1 OS signal is received. Start your debug server in your IDE and send your pod a signal when its waiting for a connection.

kubectl exec $POD_NAME -- bash -c "kill -USR1 1"

Module Breakdown

main.py

Defines an asyncio loop for managing the process proxied by entrypoint. This includes forwarding relevant signals and restarting your process when it exits. The following table documents the signals that are currently handled:

Signal Outcome
SIGTERM Causes entrypoint to stop managing and exit. This restarts the container as normal.
SIGINT Causes entrypoint to stop managing and exit. This restarts the container as normal.
SIGHUP Signal entrypoint to forward SIGTERM to process, and then spawns another process.
SIGUSR1 Signal entrypoint to continue with establishing a debugging session. Only necessary when DEBUGGER_EDITOR=pycharm.

debug.py

Defines a Debugger class that will start a debugging session based on environment variables (as documented here).

Debugger.__init__()

Loads environment variables into os.environ from a dotenv file located at /tmp/.env, and then parses these values for use in a debugging session.

Debugger.start()

Starts a debugging session.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

docker_entrypoint-0.1.7.tar.gz (11.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

docker_entrypoint-0.1.7-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

Details for the file docker_entrypoint-0.1.7.tar.gz.

File metadata

  • Download URL: docker_entrypoint-0.1.7.tar.gz
  • Upload date:
  • Size: 11.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for docker_entrypoint-0.1.7.tar.gz
Algorithm Hash digest
SHA256 a356f30f35f3de7b7f0b8d7345e13bc5ef1a53310f8185c35cf54e83f544a30b
MD5 fc3ae560cdb169bcbcb26456b38ac58d
BLAKE2b-256 9e7b449ce08d94bc337609e1b5ab4622527eab9a7eb6f8ffb3182fe66faf6e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for docker_entrypoint-0.1.7.tar.gz:

Publisher: release.yml on PlaidCloud/docker-entrypoint

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docker_entrypoint-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for docker_entrypoint-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 bf55190fa23fbb5e5bd1831084bae22987430f168fe79157422a7f91cf0c940f
MD5 06eb9f21f55b6a64fd7ada35adea3804
BLAKE2b-256 2125d7c39de073ce3b9d64e4b68d2a72ac07c6a152605de20eb714f1ab700c40

See more details on using hashes here.

Provenance

The following attestation bundles were made for docker_entrypoint-0.1.7-py3-none-any.whl:

Publisher: release.yml on PlaidCloud/docker-entrypoint

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.7 This release

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page