19 lines
699 B
Bash
19 lines
699 B
Bash
# FileGator Docker Compose - Environment Variables
|
|
|
|
# Docker image tag to use for FileGator. Defaults to "latest" if not set.
|
|
FILEGATOR_VERSION=latest
|
|
|
|
# Host port to expose the FileGator web UI on. Maps to container port 8080.
|
|
FILEGATOR_PORT=8080
|
|
|
|
# IP address or hostname of the NFS server used for both volumes.
|
|
FILEGATOR_NFS_SERVER=192.168.1.100
|
|
|
|
# NFS export path for the FileGator config volume (private app data).
|
|
# Example: :/mnt/pool/filegator/config
|
|
FILEGATOR_CONFIG_NFS_DEVICE=:/mnt/pool/filegator/config
|
|
|
|
# NFS export path for the FileGator repository volume (user file storage).
|
|
# Example: :/mnt/pool/filegator/repository
|
|
FILEGATOR_REPOSITORY_NFS_DEVICE=:/mnt/pool/filegator/repository
|