# Isohedron License Server — Docker Compose configuration
#
# Copy this file or edit in place. Docker Compose reads it automatically.

# Bind address — which host interface to accept connections on.
#   0.0.0.0      = all interfaces (default)
#   127.0.0.1    = localhost only
#   192.168.1.50 = specific interface
ISOHEDRON_BIND_ADDRESS=0.0.0.0

# Port to expose on the host.
ISOHEDRON_PORT=8848

# Admin key — protects privileged operations (force-release, purge-expired, reload, shutdown).
# Leave empty to allow unauthenticated admin access.
#
# For production deployments, use ISOHEDRON_ADMIN_KEY_FILE instead to read the
# key from a file (e.g., a Docker secret or a chmod 600 file):
#   ISOHEDRON_ADMIN_KEY_FILE=/run/secrets/admin-key
ISOHEDRON_ADMIN_KEY=
# ISOHEDRON_ADMIN_KEY_FILE=
