mirror of
https://github.com/hotio/website.git
synced 2026-01-09 07:53:23 +08:00
772 B
772 B
| hide | |
|---|---|
|
--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"