mirror of
https://github.com/ClusterCockpit/cc-docker.git
synced 2024-11-10 07:17:26 +01:00
49 lines
1.6 KiB
Bash
49 lines
1.6 KiB
Bash
DATADIR=./data
|
|
|
|
########################################################################
|
|
# APP
|
|
########################################################################
|
|
APP_CLUSTERCOCKPIT_INIT=true
|
|
APP_ENVIRONMENT=dev
|
|
|
|
########################################################################
|
|
# PHP
|
|
########################################################################
|
|
PHP_XDEBUG_MODE=develop,debug
|
|
PHP_XDEBUG_CLIENT_PORT=9003
|
|
PHP_XDEBUG_CLIENT_HOST=host.docker.internal
|
|
|
|
########################################################################
|
|
# MySQL
|
|
# The SQL port is not exposed outside the container
|
|
########################################################################
|
|
MYSQL_ROOT_PASSWORD=root
|
|
MYSQL_DATABASE=ClusterCockpit
|
|
MYSQL_USER=symfony
|
|
MYSQL_PASSWORD=symfony
|
|
|
|
########################################################################
|
|
# INFLUXDB
|
|
########################################################################
|
|
INFLUXDB_PORT=8086
|
|
INFLUXDB_PASSWORD=2RPJpkrduLgkpfQCpcBe1jYv
|
|
INFLUXDB_ADMIN_TOKEN=egLfcf7fx0FESqFYU3RpAAbj
|
|
|
|
########################################################################
|
|
# LDAP
|
|
########################################################################
|
|
LDAP_ADMIN_PASSWORD=mashup
|
|
LDAP_ORGANISATION=NHR@FAU
|
|
LDAP_DOMAIN=rrze.uni-erlangen.de
|
|
|
|
########################################################################
|
|
# PHPMyAdmin
|
|
########################################################################
|
|
PHPMYADMIN_PORT=8080
|
|
|
|
########################################################################
|
|
# NGINX
|
|
########################################################################
|
|
NGINX_PORT=80
|
|
NGINX_SYMFONY_SERVER_NAME=localhost
|