Looking for all environment variables to setup my nextcloud instance with docker

Hello,
I would like to setup my nextcloud environment with docker (nginx proxy, nginx,
fpm-nextcloud, redis and postgres).

To configure the nextcloud instance, I would like to define all settings about
enviroment variables instead to mount the config file from the hostsystem into
the container. Currently I have only found some enviroment variables for the
installation process, like this ones which I defined in my docker-compose.yml.
A sample docker-compose.yml file is available on
https://cryptic.systems/nextcloud-test.tar.gz

environment:
- POSTGRES_DB=${NEXTCLOUD_DB_NAME}
- POSTGRES_USER=${NEXTCLOUD_DB_USER}
- POSTGRES_PASSWORD=${NEXTCLOUD_DB_PASSWORD}
- POSTGRES_HOST=${NEXTCLOUD_DB_HOST}
- REDIS_HOST=${NEXTCLOUD_REDIS_HOST}
- REDIS_PORT=${NEXTCLOUD_REDIS_PORT}

So I am looking for more environment variables to adapt my nextcloud instance to
my need. Unfortunately I couldn’t find anything in the documentation. Does
anyone have an idea where all environment variables are documented?

Volker

Unfortunately not, but you could run a grep -R "getenv" to find which environment varaibles are used in which file php file of the installation :wink: