15 lines
502 B
Bash
15 lines
502 B
Bash
# Kanboard Docker Compose - Environment Variables
|
|
|
|
# Docker image tag to use for Kanboard. Defaults to "latest" if not set.
|
|
KANBOARD_VERSION=latest
|
|
|
|
# Host port to expose the Kanboard web UI on. Maps to container port 80.
|
|
KANBOARD_PORT=8080
|
|
|
|
# IP address or hostname of the NFS server used for the app volume.
|
|
KANBOARD_NFS_SERVER=192.168.1.100
|
|
|
|
# NFS export path for the Kanboard app volume (data, plugins, and SSL certs).
|
|
# Example: :/mnt/pool/kanboard/app
|
|
KANBOARD_NFS_DEVICE=:/mnt/pool/kanboard/app
|