mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
24 lines
664 B
YAML
24 lines
664 B
YAML
# [Requestrr](https://github.com/darkalfx/requestrr) is a chatbot used to
|
|
# simplify using services like Sonarr/Radarr/Ombi via the use of chat.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
requestrr:
|
|
image: ghcr.io/linuxserver/requestrr
|
|
container_name: requestrr
|
|
environment:
|
|
# for GroupID
|
|
- PUID=${PUID:-1024}
|
|
# for UserID
|
|
- PGID=${PGID:-100}
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Contains all relevant configuration files.
|
|
- ${BASEDIR:-/volume1/docker}/requestrr/config:/config
|
|
ports:
|
|
# web gui
|
|
- 4545:4545
|
|
restart: unless-stopped
|