-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
56 lines (46 loc) · 1.58 KB
/
.env.example
File metadata and controls
56 lines (46 loc) · 1.58 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Environment variables for Docker Compose
# Copy this file to .env and customize as needed
# Timezone
TZ=America/New_York
# Image / naming (optional)
# LORA_PILOT_IMAGE=notrius/lora-pilot:latest
# LORA_PILOT_CONTAINER_NAME=lora-pilot
# LORA_PILOT_NETWORK_NAME=lora-pilot-network
# Hugging Face token (optional, for private models)
# HF_TOKEN=your_huggingface_token_here
# Supervisor admin password (optional)
# SUPERVISOR_ADMIN_PASSWORD=your_secure_password
# GPU configuration (optional)
# NVIDIA_VISIBLE_DEVICES=all
# NVIDIA_DRIVER_CAPABILITIES=compute,utility,display
# Custom ports (optional - must match docker-compose ports)
PORTAL_PORT=7878
JUPYTER_PORT=8888
CODE_SERVER_PORT=8443
COMFY_PORT=5555
KOHYA_PORT=6666
INVOKE_PORT=9090
DIFFPIPE_PORT=4444
AI_TOOLKIT_PORT=8675
AI_TOOLKIT_DB_PATH=/workspace/config/ai-toolkit/aitk_db.db
SERVICE_UPDATES_BOOT_RECONCILE=1
SERVICE_UPDATES_CONFIG_PATH=/workspace/config/service-updates.toml
SERVICE_UPDATES_ROLLBACK_LOG_PATH=/workspace/config/service-updates-rollback.jsonl
# Copilot Sidecar (optional; internal service used by ControlPilot)
COPILOT_SIDECAR_PORT=7879
COPILOT_SIDECAR_URL=http://127.0.0.1:7879
COPILOT_GITHUB_TOKEN=
COPILOT_HOME=/workspace/home/root
COPILOT_XDG_CONFIG_HOME=/workspace/home/root/.config
COPILOT_CWD=/workspace
COPILOT_TIMEOUT_SECONDS=1800
# Development settings (for docker-compose.dev.yml)
PYTHONUNBUFFERED=1
FLASK_ENV=development
DEBUG=1
# CPU-only optimizations (for docker-compose.cpu.yml)
OMP_NUM_THREADS=4
MKL_NUM_THREADS=4
# Resource limits (optional - not currently used in compose files)
# MEMORY_LIMIT=16G
# CPU_LIMIT=8