docker-bits/lsio/ombi/docker-compose.yaml

31 lines
1.3 KiB
YAML
Raw Normal View History

2021-04-10 10:16:29 +00:00
# Ombi allows you to host your own Plex Request and user management system. If
# you are sharing your Plex server with other users, allow them to request new
# content using an easy to manage interface! Manage all your requests for Movies
# and TV with ease, leave notes for the user and get notification when a user
# requests something. Allow your users to post issues against their requests so
# you know there is a problem with the audio etc. Even automatically send them
# weekly newsletters of new content that has been added to your Plex server!
---
version: "2.1"
services:
ombi:
image: ghcr.io/linuxserver/ombi
container_name: ombi
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
# Subfolder can optionally be defined as an env variable for reverse proxies. Keep in mind that once this value is defined, the gui setting for base url no longer works. To use the gui setting, remove this env variable.
- BASE_URL=/ombi # optional
volumes:
# Contains all relevant configuration files.
- ${BASEDIR:-/volume1/docker}/ombi/config:/config
ports:
# web gui
- 3579:3579
restart: unless-stopped