Sign inSign up

darkotodoric/tls-client-api

By darkotodoric

•Updated about 18 hours ago

Image
Networking
Developer tools
0

1.4K

darkotodoric/tls-client-api repository overview

⁠TLS-Client-API

Docker image for the project: https://github.com/bogdanfinn/tls-client-api/⁠

⁠Environment variables
  • 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.
⁠Quick start
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

⁠Docker Compose example

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

⁠Optional: custom config file

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

Tag summary

Content type

Image

Digest

sha256:e81f96dc7…

Size

48.8 MB

Last updated

about 18 hours ago

docker pull darkotodoric/tls-client-api