Add .env.example template with all configuration options (Radarr, Sonarr, SABnzbd). Move environment variables from docker-compose.yml to .env file for easier configuration management. Add .gitignore for .env, data/, and Python cache files. Update README with setup instructions for copying .env.example and configuring services. Replace hardcoded volume paths with environment variables in docker-compose.yml.
23 lines
540 B
YAML
23 lines
540 B
YAML
services:
|
|
radarr-language-dashboard:
|
|
build: .
|
|
container_name: radarr-language-dashboard
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8099:8099"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
# Host-Pfad deiner Film-Library -> interner Dashboard-Pfad
|
|
- ${FILM_MEDIA_VOLUME}:/media/filme:ro
|
|
# Sonarr aktivieren, wenn SERIES_MEDIA_VOLUME gesetzt ist:
|
|
# - ${SERIES_MEDIA_VOLUME}:/media/serien:ro
|
|
- ./data:/data
|
|
networks:
|
|
- media
|
|
|
|
networks:
|
|
media:
|
|
external: true
|
|
name: media-stack_default
|