Skip to main content

Load docker secrets into ENV

Project description

docker-secrets-dotenv

docker-secrets-dotenv-ver pythonver license

docker-secrets-dotenv takes all your docker secrets files, and sets them up in the environment.

Getting Started

pip install docker-secrets-dotenv

To use docker-secrets-dotenv in your project run load_secrets as the start of your application:

from docker_secrets import load_secrets

load_secrets() 
# This will load all secret files found in /run/secrets into the running environment

load_secrets will take the name of each secret file to set as the variable key and read the file contents as the value. It will overwrite existing environment variables.

There is an optional argument you can pass to remove the suffix of the secret when loading in the the environment:

from docker_secrets import load_secrets

load_secrets(remove_suffix="_FILE") 
# This will load all secret files found in /run/secrets into the running environment 
# after removing "_FILE" from the end of the secrets file name.
# /run/secrets/API_KEY_FILE will exist in the environment as API_KEY

This is mostly because I am lazy and don't want to update my existing secrets that follow the _FILE convention set by other docker images, or write my code in a way that checks for both variations with and without the suffix.

Project details


Download files

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

Source Distribution

docker_secrets_dotenv-0.1.2.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

docker_secrets_dotenv-0.1.2-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page