-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.docker.example
More file actions
33 lines (28 loc) · 1.34 KB
/
.env.docker.example
File metadata and controls
33 lines (28 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Permiso Docker Environment Configuration
# Copy to .env.docker and update with your values
#
# Used by: docker-compose.yml
# IMPORTANT: All required variables must be set. No defaults are used.
# =============================================================================
# Database Configuration (REQUIRED)
# =============================================================================
# Data directory inside container - host path mapped via PERMISO_HOST_DATA_DIR
PERMISO_DATA_DIR=/app/data
# Host directory to mount as /app/data in container
PERMISO_HOST_DATA_DIR=./data
# =============================================================================
# Server Configuration (REQUIRED)
# =============================================================================
PERMISO_SERVER_HOST=0.0.0.0
PERMISO_SERVER_PORT=5001
LOG_LEVEL=info
# =============================================================================
# Docker-specific Configuration
# =============================================================================
# Run migrations on container startup
PERMISO_AUTO_MIGRATE=true
# =============================================================================
# API Key Authentication (optional)
# =============================================================================
# PERMISO_API_KEY=your-secure-api-key-here
# PERMISO_API_KEY_ENABLED=true