mirror of
https://codeberg.org/shroff/phylum.git
synced 2025-12-17 00:54:44 -06:00
31 lines
861 B
Bash
31 lines
861 B
Bash
##
|
|
# PHYLUM_IMAGE_TAG=latest
|
|
|
|
## Base path of container mounts
|
|
# DATA_ROOT=./data
|
|
|
|
## Location of config file (relative to ${DATA_ROOT})
|
|
# CONFIG_LOCATION=config.yml
|
|
|
|
## Location of uploaded content (relative to ${DATA_ROOT})
|
|
# STORAGE_LOCATION=storage
|
|
|
|
## Location of postgres data (relative to ${DATA_ROOT})
|
|
# PG_DATA_LOCATION=postgres
|
|
|
|
|
|
## Database config
|
|
# PHYLUM_DB_NAME=phylum
|
|
# PHYLUM_DB_USER=phylum
|
|
PHYLUM_DB_PASSWORD=phylum
|
|
|
|
|
|
# For a full list of configuration parameters see the config.defaults.yml at
|
|
# https://codeberg.org/shroff/phylum/.
|
|
#
|
|
# You can also use PHYLUM_* environment variables substituting '_' for '.' to
|
|
# override any config (i.e. PHYLUM_SERVER_PORT to override server.port), but
|
|
# it is recommended to not do that unless you know what you are doing.
|
|
#
|
|
# Please note that environment variables take precedence over the config file.
|