From d3a3555a50c33bf035d124d00d0737f3a888fa40 Mon Sep 17 00:00:00 2001 From: Charlie Laabs Date: Sat, 21 Jan 2023 23:15:08 -0600 Subject: [PATCH] Fix docker run command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 52b5b57..19e4315 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Running this bot in Docker is the easiest way to ensure it runs as expected and 1. Open a command prompt and run: ```sh - docker run --restart unless-stopped --rm -ti -v /my/host/dir:/usr/app/config ghcr.io/claabs/markov-discord:latest + docker run --restart unless-stopped -d -v /my/host/dir:/usr/app/config ghcr.io/claabs/markov-discord:latest ``` Where `/my/host/dir` is a accessible path on your system. `--restart=unless-stopped` is recommended in case an unexpected error crashes the bot.