🏡 index : github.com/captn3m0/nebula.git

author Nemo <me@captnemo.in> 2019-04-02 2:55:26.0 +05:30:00
committer Nemo <me@captnemo.in> 2019-04-02 2:55:26.0 +05:30:00
commit
c2e029fb4fcbb55f77383432c8bff19512415b5c [patch]
tree
1fe9b8eba736a7568cb0b10e634bcf3b65c0ff98
parent
0ce0753d5f6232f5eeb292aa5b17f4e628935ecc
download
c2e029fb4fcbb55f77383432c8bff19512415b5c.tar.gz

Adds audioserve



Diff

 audioserve.tf | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/audioserve.tf b/audioserve.tf
new file mode 100644
index 0000000..762ed66 100644
--- /dev/null
+++ a/audioserve.tf
@@ -1,0 +1,26 @@
module "audioserve" {

  name   = "audioserve"
  source = "modules/container"

  web {

    expose = true
    port   = "3000"
    host   = "audioserve.${var.root-domain}"
    auth   = "true"
  }

  restart = "always"

  image = "izderadicka/audioserve"

  volumes = [

    {
      host_path      = "/mnt/xwing/media/Music/Audiobooks"
      container_path = "/audiobooks"
    },
  ]

  networks_advanced = [{

    name = "traefik"
  }]
}