From f84d752bca193eb48d8f052bc044b74519193e66 Mon Sep 17 00:00:00 2001 From: Fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sun, 5 Jan 2025 23:45:58 +0800 Subject: [PATCH] docs: add in missing part in windows docker --- docs/getting-started/docker.mdx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/getting-started/docker.mdx b/docs/getting-started/docker.mdx index 5e710735c..303ed9a37 100644 --- a/docs/getting-started/docker.mdx +++ b/docs/getting-started/docker.mdx @@ -145,6 +145,16 @@ Then, create and start the Jellyseerr container: ```bash docker run -d --name jellyseerr -e LOG_LEVEL=debug -e TZ=Asia/Tashkent -p 5055:5055 -v "jellyseerr-data:/app/config" --restart unless-stopped fallenbagel/jellyseerr:latest +``` + +#### Updating: +Pull the latest image: +```bash +docker compose pull jellyseerr +``` +Then, restart all services defined in the Compose file: +```bash +docker compose up -d ``` @@ -167,6 +177,16 @@ services: volumes: jellyseerr-data: external: true +``` + +#### Updating: +Pull the latest image: +```bash +docker compose pull jellyseerr +``` +Then, restart all services defined in the Compose file: +```bash +docker compose up -d ``` @@ -185,3 +205,6 @@ Docker on Windows works differently than it does on Linux; it runs Docker inside **If you must run Docker on Windows, you should put the `/app/config` directory mount inside the VM and not on the Windows host.** (This also applies to other containers with SQLite databases.) Named volumes, like in the example commands above, are automatically mounted inside the VM. Therefore the warning on the setup about the `/app/config` folder being incorrectly mounted page should be ignored. +::: + +