-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
60 lines (55 loc) · 1.69 KB
/
docker-compose.yaml
File metadata and controls
60 lines (55 loc) · 1.69 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
52
53
54
55
56
57
58
59
60
version: '3.8'
services:
blockbusterr:
image: ghcr.io/mahcks/blockbusterr:latest
container_name: blockbusterr
restart: unless-stopped
ports:
- "9090:9090" # Change host port: "8080:9090" or "443:9090"
volumes:
# Persist database, activity logs, and configuration
- ./data:/app/data
# Optional: Mount your config file directly
# - ./config.yaml:/app/config/config.yaml:ro
# Or mount a config directory
# - ./config:/app/config:ro
environment:
# Optional: Specify custom config file location
# CONFIG_PATH: /app/config
# Optional: Override config values with environment variables
# TRAKT_CLIENT_ID: your_client_id
# TRAKT_CLIENT_SECRET: your_client_secret
# RADARR_URL: http://radarr:7878
# RADARR_API_KEY: your_radarr_key
# SONARR_URL: http://sonarr:8989
# SONARR_API_KEY: your_sonarr_key
# DISABLE_UI: true # Set to disable Web UI (enabled by default)
- TZ=America/New_York # Set your timezone
# Example: Run alongside Radarr and Sonarr
# radarr:
# image: linuxserver/radarr:latest
# container_name: radarr
# restart: unless-stopped
# ports:
# - "7878:7878"
# volumes:
# - ./radarr-config:/config
# - /path/to/movies:/movies
# environment:
# - PUID=1000
# - PGID=1000
# - TZ=America/New_York
#
# sonarr:
# image: linuxserver/sonarr:latest
# container_name: sonarr
# restart: unless-stopped
# ports:
# - "8989:8989"
# volumes:
# - ./sonarr-config:/config
# - /path/to/tv:/tv
# environment:
# - PUID=1000
# - PGID=1000
# - TZ=America/New_York