From bfe493c79465789675a5cf19332c5dcfd0cbf73c Mon Sep 17 00:00:00 2001 From: Nemo Date: Sat, 14 Apr 2018 15:11:01 +0530 Subject: [PATCH] Removes daapd --- README.md | 3 +-- media/daapd.tf | 34 ---------------------------------- 2 files changed, 1 insertion(+), 36 deletions(-) delete mode 100644 media/daapd.tf diff --git a/README.md b/README.md index 74fcbae..ee29f88 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The canonical URL for this repo is https://git.captnemo.in/nemo/nebula/. A mirro 1. docker: to actually run the services. Catch-all for miscellaneous containers 2. cloudflare: to manage the DNS. 3. mysql: to create mysql users and databases. -4. media: Media related containers (Jackett, Lidarr, Radarr, Sonarr, Daapd) +4. media: Media related containers (Jackett, Lidarr, Radarr, Sonarr) 5. Monitoring: Monitoring related resources (Cadvisor, Grafana, NodeExporter, Prometheus, Transmission-Exporter) 6. Gitea: Just git.captnemo.in 7. tt-rss: Tiny-Tiny RSS Web reader @@ -46,7 +46,6 @@ Currently running the following (all links are to the `store.docker.com` links f | google/cadvisor | latest | 62.2 | monitoring | | odarriba/timemachine | latest | 77.2 | backup | | gitea/gitea | 1.4 | 77.4 | gitea | -| linuxserver/daapd | latest | 85.5 | media | | linuxserver/heimdall | latest | 101 | general | | linuxserver/tt-rss | latest | 108 | tt-rss | | prom/prometheus | latest | 113 | monitoring | diff --git a/media/daapd.tf b/media/daapd.tf deleted file mode 100644 index c92f3b6..0000000 --- a/media/daapd.tf +++ /dev/null @@ -1,34 +0,0 @@ -data "docker_registry_image" "daapd" { - name = "linuxserver/daapd:latest" -} - -resource "docker_image" "daapd" { - name = "${data.docker_registry_image.daapd.name}" - pull_triggers = ["${data.docker_registry_image.daapd.sha256_digest}"] -} - -resource "docker_container" "daapd" { - name = "daapd" - image = "${docker_image.daapd.latest}" - - restart = "unless-stopped" - destroy_grace_seconds = 10 - must_run = true - network_mode = "host" - - volumes { - host_path = "/mnt/xwing/config/daapd" - container_path = "/config" - } - - volumes { - host_path = "/mnt/xwing/media/Music" - container_path = "/music" - } - - env = [ - "PUID=1004", - "PGID=1003", - "TZ=Asia/Kolkata", - ] -}