-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
executable file
·56 lines (46 loc) · 1.94 KB
/
Copy path.env.example
File metadata and controls
executable file
·56 lines (46 loc) · 1.94 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
# =============================================================================
# NEXUS DOCKER COMPOSE ENVIRONMENT VARIABLES
# =============================================================================
# This file contains GLOBAL environment variables shared across all services.
# Service-specific vars (API keys, database creds) belong in services/<name>/.env
#
# Copy this file to .env and fill in your actual values.
# -----------------------------------------------------------------------------
# PATHS
# -----------------------------------------------------------------------------
# Root path for Docker container data volumes
DATA_PATH=./docker
# Path for Docker compose stacks
STACKS_PATH=./stacks
# Central media library path (shared across media services)
MEDIA_PATH=/path/to/media
# Central backup directory
BACKUP_PATH=/path/to/backups
# -----------------------------------------------------------------------------
# SYSTEM / TIMEZONE
# -----------------------------------------------------------------------------
TZ=America/New_York
PUID=1000
PGID=1000
DOCKER_GID=999
# -----------------------------------------------------------------------------
# NETWORK
# -----------------------------------------------------------------------------
# Host machine IP on local network
HOST_IP=192.168.1.x
# Local area network CIDR block
LAN_CIDR=192.168.1.0/24
# Docker network settings (nexus network)
NEXUS_SUBNET=172.52.0.0/16
NEXUS_GATEWAY=172.52.0.1
# -----------------------------------------------------------------------------
# DOMAIN CONFIGURATION
# -----------------------------------------------------------------------------
DOMAIN=example.com
# -----------------------------------------------------------------------------
# GLOBAL ADMIN CREDENTIALS
# -----------------------------------------------------------------------------
# Used by multiple services for initial admin account setup
ADMIN_EMAIL=admin@example.com
ADMIN_USERNAME=admin
ADMIN_PASSWORD=