docs(docker): replace backslashes by backticks in windows docker run commands [skip-ci] (#2557)

This commit is contained in:
0xsysr3ll
2026-03-16 16:17:38 +01:00
committed by GitHub
parent 6c52a2f3ad
commit 40e02bba6a
4 changed files with 103 additions and 35 deletions

View File

@@ -53,6 +53,7 @@ Changes :
Since the container now runs as the `node` user (UID 1000), you must ensure your config folder has the correct permissions. The `node` user must have read and write access to the `/app/config` directory.
If you're migrating from a previous installation, you may need to update the ownership of your config folder:
```bash
docker run --rm -v /path/to/appdata/config:/data alpine chown -R 1000:1000 /data
```
@@ -106,6 +107,7 @@ Summary of changes :
</Tabs>
### Windows
Summary of changes :
<Tabs groupId="docker-methods" queryString>
<TabItem value="docker-compose" label="Docker compose">
@@ -136,17 +138,32 @@ Summary of changes :
external: true
```
</TabItem>
<TabItem value="docker-cli" label="Docker CLI">
```bash {2-3,8,10}
docker run -d \
--name seerr \
--init \
-e LOG_LEVEL=debug \
-e TZ=Asia/Tashkent \
-e PORT=5055 \
-p 5055:5055 \
-v seerr-data:/app/config \
--restart unless-stopped \
<TabItem value="docker-cli" label="Docker CLI (PowerShell)">
```powershell {2-3,8,10}
docker run -d `
--name seerr `
--init `
-e LOG_LEVEL=debug `
-e TZ=Asia/Tashkent `
-e PORT=5055 `
-p 5055:5055 `
-v seerr-data:/app/config `
--restart unless-stopped `
ghcr.io/seerr-team/seerr:latest
```
</TabItem>
<TabItem value="docker-cli-cmd" label="Docker CLI (CMD)">
```batch {2-3,8,10}
docker run -d ^
--name seerr ^
--init ^
-e LOG_LEVEL=debug ^
-e TZ=Asia/Tashkent ^
-e PORT=5055 ^
-p 5055:5055 ^
-v seerr-data:/app/config ^
--restart unless-stopped ^
ghcr.io/seerr-team/seerr:latest
```
</TabItem>
@@ -277,4 +294,4 @@ Follow the [Unraid Installation Guide](/getting-started/third-parties/unraid#2-s
Start the newly created Seerr container. Check the container logs to confirm the automatic migration completed successfully.
**5. Remove the old app**
Once you have confirmed Seerr is working properly and your data has successfully migrated, you can safely **Remove** the old Overseerr (or Jellyseerr) container from Unraid.
Once you have confirmed Seerr is working properly and your data has successfully migrated, you can safely **Remove** the old Overseerr (or Jellyseerr) container from Unraid.