-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
39 lines (33 loc) · 844 Bytes
/
compose.yaml
File metadata and controls
39 lines (33 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: seerr
x-daemonless:
title: "Seerr"
icon: ":material-eye:"
category: "Media Management"
description: "Unified media request management (Plex, Jellyfin, Emby) on FreeBSD."
upstream_url: "https://github.com/seerr-team/seerr"
web_url: "https://seerr.io/"
user: "bsd"
mlock: false
appjail: true
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
volumes:
/config: "Configuration and database directory"
ports:
5055: "Web UI"
services:
seerr:
image: ghcr.io/daemonless/seerr:latest
container_name: seerr
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/seerr:/config
ports:
- 5055:5055