30 lines
888 B
Plaintext
30 lines
888 B
Plaintext
# Lightweight Docker Registry Configuration
|
|
# Copy this file to .env and customize for your environment
|
|
|
|
# Registry Configuration
|
|
REGISTRY_STORAGE_PATH=/var/lib/registry
|
|
REGISTRY_DATA_PATH=./data
|
|
REGISTRY_LOG_LEVEL=info
|
|
REGISTRY_DELETE_ENABLED=true
|
|
|
|
# Note: Authentication and TLS are disabled by default
|
|
# To enable them, you'll need to mount custom config.yml
|
|
# See README.md for advanced configuration
|
|
|
|
# UI Configuration
|
|
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 |