1.4K
Docker image for the project: https://github.com/bogdanfinn/tls-client-api/
AUTH_KEY (optional): If set, it overrides api_auth_keys in the config with this single key.CONFIG_FILE (optional, default: /app/config.dist.yml): Path to the config file used by the entrypoint.docker run -d \
--name tls-client-api \
-e AUTH_KEY=change-me \
-p 8080:8080 \
-p 8081:8081 \
--restart unless-stopped \
darkotodoric/tls-client-api:latest
services:
tls-client-api:
image: darkotodoric/tls-client-api:latest
container_name: tls-client-api
environment:
AUTH_KEY: "change-me"
ports:
- "8080:8080"
- "8081:8081"
restart: unless-stopped
If you want full control over settings, mount your own config and point CONFIG_FILE to it:
services:
tls-client-api:
image: darkotodoric/tls-client-api:latest
environment:
AUTH_KEY: "change-me"
CONFIG_FILE: /app/config.yml
volumes:
- ./config.yml:/app/config.yml:ro
ports:
- "8080:8080"
- "8081:8081"
restart: unless-stopped
Content type
Image
Digest
sha256:e81f96dc7…
Size
48.8 MB
Last updated
about 18 hours ago
docker pull darkotodoric/tls-client-api