mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-04 18:14:53 -05:00
38 lines
1.5 KiB
Bash
38 lines
1.5 KiB
Bash
# If you're on a internet facing server please comment out following line.
|
|
# It skips certificate validation for various parts of oCIS and is needed if you use self signed certificates.
|
|
INSECURE=true
|
|
|
|
### Traefik settings ###
|
|
# Serve Treafik dashboard. Defaults to "false".
|
|
TRAEFIK_DASHBOARD=
|
|
# Domain of Traefik, where you can find the dashboard. Defaults to "traefik.owncloud.test"
|
|
TRAEFIK_DOMAIN=
|
|
# Basic authentication for the dashboard. Defaults to user "admin" and password "admin"
|
|
TRAEFIK_BASIC_AUTH_USERS=
|
|
# Email address for obtaining LetsEncrypt certificates, needs only be changed if this is a public facing server
|
|
TRAEFIK_ACME_MAIL=
|
|
|
|
### oCIS settings ###
|
|
# oCIS version. Defaults to "latest"
|
|
OCIS_DOCKER_TAG=
|
|
# Domain of oCIS, where you can find the frontend. Defaults to "ocis.owncloud.test"
|
|
OCIS_DOMAIN=
|
|
# owncloud Web openid connect client id. Defaults to "web"
|
|
OCIS_OIDC_CLIENT_ID=
|
|
|
|
### Keycloak ###
|
|
# Domain of Keycloak, where you can find the managment and authentication frontend. Defaults to "keycloak.owncloud.test"
|
|
KEYCLOAK_DOMAIN=
|
|
# Realm which to be used with oCIS. Defaults to "master"
|
|
KEYCLOAK_REALM=
|
|
# Admin user login name. Defaults to "admin"
|
|
KEYCLOAK_ADMIN_USER=
|
|
# Admin user login password. Defaults to "admin"
|
|
KEYCLOAK_ADMIN_PASSWORD=
|
|
|
|
|
|
# If you want to use debugging and tracing with this stack,
|
|
# you need uncomment following line. Please see documentation at
|
|
# https://owncloud.github.io/ocis/deployment/monitoring-tracing/
|
|
#COMPOSE_FILE=docker-compose.yml:monitoring_tracing/docker-compose-additions.yml
|