Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/features/authentication-access/auth/ldap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ This guide provides a comprehensive walkthrough for setting up OpenLDAP authenti
The easiest way to get a test OpenLDAP server running is by using Docker. This `docker-compose.yml` file will create an OpenLDAP container and an optional phpLDAPadmin container for a web-based GUI.

```yaml title="docker-compose.yml"
version: "3.9"
services:
ldap:
image: osixia/openldap:1.5.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ docker run --gpus all -p 5001:5001 \
**Recommended production deployment with Docker Compose:**

```yaml
version: "3.8"
services:
docling-serve:
image: quay.io/docling-project/docling-serve-cu128:latest
Expand Down
2 changes: 0 additions & 2 deletions docs/getting-started/quick-start/tab-docker/DockerSwarm.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ Choose the appropriate command based on your hardware setup:
#### Docker-stack.yaml

```yaml
version: '3.9'

services:
openWebUI:
image: ghcr.io/open-webui/open-webui:main
Expand Down
2 changes: 0 additions & 2 deletions docs/tutorials/integrations/dev-tools/jupyter.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ Here is the target configuration we're going to set-up through this tutorial.
To accomplish this, I used `docker-compose` to launch a stack that includes both services, along with my LLMs, but this should also work if run each docker container separately.

```yaml title="docker-compose.yml"
version: "3.8"

services:
open-webui:
image: ghcr.io/open-webui/open-webui:latest
Expand Down
1 change: 0 additions & 1 deletion docs/tutorials/integrations/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ With proper `timeout` configuration, this number should fluctuate naturally (ris
To set up Redis for websocket support, you will need to create a `docker-compose.yml` file with the following contents:

```yml
version: '3.9'
services:
redis:
image: docker.io/valkey/valkey:8.0.1-alpine
Expand Down
Loading