You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
702 B
Bash

3 years ago
# [Requestrr](https://github.com/darkalfx/requestrr) is a chatbot used to
# simplify using services like Sonarr/Radarr/Ombi via the use of chat.
3 years ago
source ./.env
docker run -d \
--name=requestrr \
2 years ago
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=Etc/UTC `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
3 years ago
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
3 years ago
-p 4545:4545 `# web gui` \
-v ${BASEDIR:-/volume1/docker}/requestrr/config:/config `# Contains all relevant configuration files.` \
--restart unless-stopped \
ghcr.io/linuxserver/requestrr