Skip to content

Commit

Permalink
docs: add better env variable instructions (#863)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fallenbagel authored Jul 6, 2024
1 parent f201fee commit 7a826a1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions docs/getting-started/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,11 @@ docker run -d \
--restart unless-stopped \
fallenbagel/jellyseerr
```
:::info
:::tip
If you are using emby, make sure to set the `JELLYFIN_TYPE` environment variable to `emby`.
```bash
-e JELLYFIN_TYPE=emby
```
:::

To run the container as a specific user/group, you may optionally add `--user=[ user | user:group | uid | uid:gid | user:gid | uid:group ]` to the above command.
Expand Down Expand Up @@ -86,8 +89,12 @@ services:
- /path/to/appdata/config:/app/config
restart: unless-stopped
```
:::info
:::tip
If you are using emby, make sure to set the `JELLYFIN_TYPE` environment variable to `emby`.
```yaml
environment:
- JELLYFIN_TYPE=emby
```
:::

Then, start all services defined in the Compose file:
Expand Down

0 comments on commit 7a826a1

Please sign in to comment.