2021-04-21 00:55:42 +00:00
|
|
|
# [Overseerr](https://overseerr.dev/) is a free and open source software
|
|
|
|
# application for managing requests for your media library.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
overseerr:
|
|
|
|
image: ghcr.io/linuxserver/overseerr
|
|
|
|
container_name: overseerr
|
|
|
|
environment:
|
|
|
|
# for GroupID
|
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for UserID
|
|
|
|
- PGID=${PGID:-100}
|
|
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
2021-04-13 00:58:58 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
2021-04-10 10:16:29 +00:00
|
|
|
volumes:
|
|
|
|
# Contains all relevant configuration files.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/overseerr/config:/config
|
|
|
|
ports:
|
|
|
|
# Port for Overseerr's web interface.
|
|
|
|
- 5055:5055
|
|
|
|
restart: unless-stopped
|