Fix Docker command syntax

`-restart` is an invalid Docker command. Replaced with `--restart`.
This commit is contained in:
Kyle Parrish 2025-03-06 10:02:46 -05:00 committed by GitHub
parent 384e90f83e
commit 36cd7affe0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -52,7 +52,7 @@ Alternatively, you can run Apache Tika using the following Docker command:
```bash
docker run -d --name tika \
-p 9998:9998 \
-restart unless-stopped \
--restart unless-stopped \
apache/tika:latest-full
```