Removes daapd

This commit is contained in:
Nemo 2018-04-14 15:11:01 +05:30
parent 67620b75c1
commit bfe493c794
2 changed files with 1 additions and 36 deletions

View File

@ -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 |

View File

@ -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",
]
}