39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
# Lightweight Docker Registry Configuration
|
|
# Copy this file to .env and customize for your environment
|
|
|
|
# Registry Configuration
|
|
REGISTRY_PORT=5000
|
|
REGISTRY_STORAGE_PATH=/var/lib/registry
|
|
REGISTRY_DATA_PATH=./data
|
|
REGISTRY_LOG_LEVEL=info
|
|
REGISTRY_DELETE_ENABLED=true
|
|
|
|
# Authentication (optional)
|
|
REGISTRY_AUTH_ENABLED=false
|
|
REGISTRY_AUTH_PATH=./auth
|
|
REGISTRY_AUTH_REALM=Registry Realm
|
|
|
|
# TLS/SSL (optional)
|
|
REGISTRY_SECURED=false
|
|
REGISTRY_TLS_CERT_PATH=/certs/server.crt
|
|
REGISTRY_TLS_KEY_PATH=/certs/server.key
|
|
REGISTRY_TLS_PATH=./certs
|
|
|
|
# UI Configuration
|
|
UI_PORT=8080
|
|
REGISTRY_TITLE=Docker Registry
|
|
REGISTRY_URL=http://registry:5000
|
|
SINGLE_REGISTRY=true
|
|
DELETE_IMAGES=true
|
|
SHOW_CONTENT_DIGEST=true
|
|
SHOW_CATALOG_NB_TAGS=true
|
|
CATALOG_MIN_BRANCHES=1
|
|
CATALOG_MAX_BRANCHES=1
|
|
TAGLIST_PAGE_SIZE=100
|
|
CATALOG_ELEMENTS_LIMIT=1000
|
|
|
|
# Coolify-specific variables (override as needed)
|
|
# These can be set in Coolify's environment variables section
|
|
# DOMAIN=your-domain.com
|
|
# REGISTRY_DOMAIN=registry.your-domain.com
|
|
# UI_DOMAIN=ui.your-domain.com |