-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (26 loc) · 1.85 KB
/
.env.example
File metadata and controls
30 lines (26 loc) · 1.85 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
# ─── Spawnpoint .env ──────────────────────────────────────────────────────────
# Copy this file to .env and fill in the values you need.
# All settings are optional unless marked REQUIRED.
# ──────────────────────────────────────────────────────────────────────────────
# Port the dashboard is exposed on the host (and inside the container).
# Changing this value changes both sides of the port mapping, so the port
# you set here is the one you navigate to in your browser.
# Default: 3000
DASHBOARD_PORT=3000
# ── Data directory ────────────────────────────────────────────────────────────
# Absolute path on the HOST machine where server data, backups, and the
# database are stored. This directory is bind-mounted into the container AND
# passed to Docker when creating individual Minecraft server containers, so it
# MUST be an absolute path that exists on the host.
#
# If unset, defaults to ./data (relative to compose.yml).
# Uncomment and set this when running Docker Desktop on macOS/Windows, or
# when you want data stored somewhere other than the project folder.
#
# HOST_DATA_DIR=/home/youruser/spawnpoint/data
# ── Dashboard authentication ──────────────────────────────────────────────────
# Protect the dashboard with HTTP Basic Auth.
# If both are left unset the dashboard is open with no login required.
#
# DASHBOARD_USER=admin
# DASHBOARD_PASSWORD=change-me