From 36cd7affe0ec8110ba5dbd451f558f32c5aaa3e7 Mon Sep 17 00:00:00 2001
From: Kyle Parrish <arnydo@pm.me>
Date: Thu, 6 Mar 2025 10:02:46 -0500
Subject: [PATCH] Fix Docker command syntax

`-restart` is an invalid Docker command. Replaced with `--restart`.
---
 docs/tutorials/integrations/apachetika.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/tutorials/integrations/apachetika.md b/docs/tutorials/integrations/apachetika.md
index c54baa8..59ccdd6 100644
--- a/docs/tutorials/integrations/apachetika.md
+++ b/docs/tutorials/integrations/apachetika.md
@@ -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
 ```