-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.example.yml
More file actions
46 lines (42 loc) · 1.27 KB
/
docker-compose.example.yml
File metadata and controls
46 lines (42 loc) · 1.27 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
# FakeNotify Docker Compose Examples
#
# Prerequisites:
# 1. Install FakeNotify on the host: sudo ./install.sh
# 2. Start the daemon: sudo systemctl start fakenotify
#
# The systemd service copies the library to /run/fakenotify/
# so you only need ONE volume mount per container.
services:
jellyfin:
image: jellyfin/jellyfin:latest
environment:
- LD_PRELOAD=/run/fakenotify/libfakenotify_preload.so
volumes:
- /run/fakenotify:/run/fakenotify
- /mnt/media:/media
sonarr:
image: linuxserver/sonarr:latest
environment:
- LD_PRELOAD=/run/fakenotify/libfakenotify_preload.so
volumes:
- /run/fakenotify:/run/fakenotify
- /mnt/media:/media
- /mnt/downloads:/downloads
radarr:
image: linuxserver/radarr:latest
environment:
- LD_PRELOAD=/run/fakenotify/libfakenotify_preload.so
volumes:
- /run/fakenotify:/run/fakenotify
- /mnt/media:/media
- /mnt/downloads:/downloads
# --- Using DockerMod (even simpler for LSIO containers) ---
# No LD_PRELOAD needed, the mod handles it:
#
# sonarr:
# image: linuxserver/sonarr:latest
# environment:
# - DOCKER_MODS=ghcr.io/zachhandley/fakenotify-mod:latest
# volumes:
# - /run/fakenotify:/run/fakenotify
# - /mnt/media:/media