From 1cc0b5c4f52ae8888b526f82ef98c6b428c5e4b2 Mon Sep 17 00:00:00 2001 From: ChiefGyk3D <19499446+ChiefGyk3D@users.noreply.github.com> Date: Sun, 5 Mar 2023 13:37:21 -0500 Subject: [PATCH] docs(cron): docker shouldn't have '-it' as it's not interactive during cron (#75) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ae65ef..072a5b7 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ Every run of the program only synchronizes the accounts once. Use Cron to run it Or for the Docker version: ``` -*/10 * * * * docker run -it --rm -v /home/klausi/workspace/mastodon-twitter-sync:/data klausi/mastodon-twitter-sync +*/10 * * * * docker run --rm -v /path/to/folder/mastodon-twitter-sync:/data klausi/mastodon-twitter-sync ``` You can also use Github Actions for free to perform the periodic execution, the setup is explained in the [Periodic execution with Github Actions Cron](https://github.com/klausi/mastodon-twitter-sync/wiki/Periodic-execution-with-Github-Actions-Cron) wiki article.