-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
51 lines (44 loc) · 1.22 KB
/
compose.yaml
File metadata and controls
51 lines (44 loc) · 1.22 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
name: lidarr
x-daemonless:
title: "Lidarr"
icon: ":material-music:"
category: "Media Management"
description: "Music collection manager for Usenet and BitTorrent users — monitors RSS feeds, grabs, sorts, and renames tracks from your favorite artists."
upstream_url: "https://github.com/Lidarr/Lidarr"
web_url: "https://lidarr.audio/"
freshports_url: "https://www.freshports.org/net-p2p/lidarr/"
user: "bsd"
mlock: true
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 directory"
/music:
desc: "Music library"
optional: true
/downloads:
desc: "Download directory"
optional: true
ports:
8686: "Web UI"
services:
lidarr:
image: ghcr.io/daemonless/lidarr:latest
container_name: lidarr
restart: unless-stopped
annotations:
org.freebsd.jail.allow.mlock: "true"
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/lidarr:/config
- /path/to/music:/music
- /path/to/downloads:/downloads
ports:
- 8686:8686