From 04c0789b192ff5eefa1807e4ea2fde3c684bb2cd Mon Sep 17 00:00:00 2001 From: David <39565245+dmunozv04@users.noreply.github.com> Date: Tue, 12 Apr 2022 00:08:23 +0200 Subject: [PATCH] Created Installation (markdown) --- Installation.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Installation.md diff --git a/Installation.md b/Installation.md new file mode 100644 index 0000000..d4881e9 --- /dev/null +++ b/Installation.md @@ -0,0 +1,22 @@ +# Docker +### Setup +You need to set up several things before you can run the project. +Create blank config file: `touch config.json` +Run: +```sh +docker run --rm -it \ +--network=host \ +-v /PATH_TO_YOUR_CONFIG.json:/app/config.json \ +ghcr.io/dmunozv04/isponsorblocktv \ +--setup +``` +## Run +```sh +docker pull ghcr.io/dmunozv04/isponsorblocktv +docker run -d \ +--name iSponsorBlockTV \ +--restart=unless-stopped \ +--network=host \ +-v /PATH_TO_YOUR_CONFIG.json:/app/config.json \ +ghcr.io/dmunozv04/isponsorblocktv +```