This commit is contained in:
Franz Heinzmann (Frando) 2022-08-03 11:20:23 +02:00
parent 3c214009e7
commit 0333e00e3d
3 changed files with 22 additions and 7 deletions

View File

@ -3,18 +3,23 @@ TYPE=ocis
DOMAIN={{ .Domain }}
LETS_ENCRYPT_ENV=production
# oidc config
# Make true if using OIDC and you want accounts to be created automatically
PROXY_AUTOPROVISION_ACCOUNTS=false
# set OIDC realm url
# OIDC realm URL, e.g. https://keycloak.example.org/realm/example
OCIS_OIDC_ISSUER=
# set OIDC client id
# OIDC client ID
# Note that the client has to be in public mode (not confidential mode) and
# does therefore not need a client secret.
WEB_OIDC_CLIENT_ID=
# general config
# General config
OCIS_LOG_LEVEL=error
OCIS_LOG_COLOR=false
# do not use SSL between Traefik and oCIS
# Keep as false if using a reverse proxy
PROXY_TLS=false
# set to true if using self signed certs
# Set to true if using self signed certs
OCIS_INSECURE=false

View File

@ -21,3 +21,9 @@
your Docker swarm box
5. `abra app YOURAPPDOMAIN deploy`
## App commands
### `ocis`
To run the `ocis` command-line utility you can use the abra command `ocis`. Use it like this:
`abra app cmd YOURAPPDOMAIN app ocis`

View File

@ -1,5 +1,9 @@
export APP_ENTRYPOINT_VERSION=v2
ocis() {
ocis $@
echo "1: $1"
echo "2: $2"
echo "all: $@"
/usr/bin/ocis "$@"
}