2025-12-11 07:41:35 +01:00

772 B

hide
toc

--8<-- "includes/header-links.md"

Starting the container

=== "cli"

```shell linenums="1"
docker run --rm \
    --name seerr \
    -p 5055:5055 \
    -e PUID=1000 \
    -e PGID=1000 \
    -e UMASK=002 \
    -e TZ="Etc/UTC" \
    -v /<host_folder_config>:/config \
    ghcr.io/hotio/seerr
```

=== "compose"

```yaml linenums="1"
services:
  seerr:
    container_name: seerr
    image: ghcr.io/hotio/seerr
    ports:
      - "5055:5055"
    environment:
      - PUID=1000
      - PGID=1000
      - UMASK=002
      - TZ=Etc/UTC
    volumes:
      - /<host_folder_config>:/config
```

--8<-- "includes/tags.md"

--8<-- "includes/wireguard.md"