mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
14 lines
559 B
Bash
14 lines
559 B
Bash
# Overseerr is a free and open source software application for managing requests
|
|
# for your media library.
|
|
|
|
source ./.env
|
|
docker run -d \
|
|
--name=overseerr \
|
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
|
-e PGID=${PGID:-100} `# for UserID` \
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
|
-p 5055:5055 `# Port for Overseerr's web interface.` \
|
|
-v ${BASEDIR:-/volume1/docker}/overseerr/config:/config `# Contains all relevant configuration files.` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/overseerr
|