mirror of
https://github.com/hotio/website.git
synced 2026-01-09 07:53:23 +08:00
2.7 KiB
2.7 KiB
| hide | title | |
|---|---|---|
|
hotio/requestrr |
:octicons-mark-github-16: GitHub{ class="header-links" target="_blank" rel="noopener" }
:octicons-container-16: ghcr.io{ class="header-links" target="_blank" rel="noopener" }
:octicons-link-16: Upstream Project{ class="header-links" target="_blank" rel="noopener" }
Starting the container
=== "cli"
```shell linenums="1"
docker run --rm \
--name="requestrr" \
-p 4545:4545 \
-e PUID=1000 \
-e PGID=1000 \
-e UMASK=002 \
-e TZ="Etc/UTC" \
-v /<host_folder_config>:/config \
ghcr.io/hotio/requestrr
```
=== "compose"
```yaml linenums="1"
services:
requestrr:
container_name: requestrr
image: ghcr.io/hotio/requestrr
ports:
- "4545:4545"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /<host_folder_config>:/config
```
--8<-- "includes/wireguard.md"