52 lines
1.3 KiB
Bash
52 lines
1.3 KiB
Bash
# -----------------------------------------------
|
|
# Manyfold - Docker Compose Environment Variables
|
|
# -----------------------------------------------
|
|
# Copy this file to .env and fill in your values.
|
|
|
|
# ----------------------------
|
|
# App
|
|
# ----------------------------
|
|
|
|
# Docker image tag for Manyfold
|
|
MANYFOLD_APP_VERSION=latest
|
|
|
|
# Host port to expose the Manyfold web UI on
|
|
MANYFOLD_PORT=3214
|
|
|
|
# User and group ID the app process runs as (match your host user for volume permission compatibility)
|
|
MANYFOLD_PUID=1000
|
|
MANYFOLD_PGID=1000
|
|
|
|
# Long random string used to sign sessions — generate with: openssl rand -hex 64
|
|
MANYFOLD_SECRET_KEY=
|
|
|
|
# ----------------------------
|
|
# Database (PostgreSQL)
|
|
# ----------------------------
|
|
|
|
# Postgres image tag
|
|
MANYFOLD_DB_VERSION=15
|
|
|
|
# Database credentials — must match between app and db services
|
|
MANYFOLD_DB_USERNAME=manyfold
|
|
MANYFOLD_DB_PASSWORD=
|
|
|
|
# ----------------------------
|
|
# Redis
|
|
# ----------------------------
|
|
|
|
# Redis image tag
|
|
MANYFOLD_REDIS_VERSION=7
|
|
|
|
# ----------------------------
|
|
# NFS Volumes
|
|
# ----------------------------
|
|
|
|
# IP address or hostname of the NFS server
|
|
MANYFOLD_NFS_SERVER=
|
|
|
|
# NFS export paths for each volume (e.g. :/mnt/pool/manyfold/app)
|
|
MANYFOLD_APP_NFS_DEVICE=
|
|
MANYFOLD_DB_NFS_DEVICE=
|
|
MANYFOLD_REDIS_NFS_DEVICE=
|