diff --git a/.env b/.env index 66183361..d48abfce 100644 --- a/.env +++ b/.env @@ -6,3 +6,6 @@ BE_VERSION=v4 ## Enable v4 ELASTIC feature (disable if required or set in command line). To later disable, either unset or set to an empty value # ELASTIC_ENABLED=true + +## Enable LDAP authentication backend (disable if required or set in command line). To later disable, either unset or set to an empty value +# LDAP_ENABLED=true diff --git a/.github/workflows/compose_test.yaml b/.github/workflows/compose_test.yaml index d559755e..0cba4a40 100644 --- a/.github/workflows/compose_test.yaml +++ b/.github/workflows/compose_test.yaml @@ -54,12 +54,13 @@ jobs: strategy: matrix: BE_VERSION: [v3, v4] - JOBS_AND_ELASTIC_ENABLED: ['', true] + FEATURE_ENABLED: ['', true] steps: - uses: actions/checkout@v4 - name: Test compose.yaml run: |- - export JOBS_ENABLED=${{ matrix.JOBS_AND_ELASTIC_ENABLED }} - export ELASTIC_ENABLED=${{ matrix.JOBS_AND_ELASTIC_ENABLED }} + export JOBS_ENABLED=${{ matrix.FEATURE_ENABLED }} + export ELASTIC_ENABLED=${{ matrix.FEATURE_ENABLED }} + export LDAP_ENABLED=${{ matrix.FEATURE_ENABLED }} export BE_VERSION=${{ matrix.BE_VERSION }} docker compose --profile '*' up --wait --wait-timeout 300 diff --git a/README.md b/README.md index 285e7d85..39cef84e 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ They are used when adding new services or grouping services together (and do not | env | `BE_VERSION` |