From 506837de4ce87045c990451ec224a0b2d34b4799 Mon Sep 17 00:00:00 2001 From: Iwan Clement Date: Sat, 18 May 2019 10:49:19 +0200 Subject: [PATCH] =?UTF-8?q?Cr=C3=A9ation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tautulli/docker-compose.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tautulli/docker-compose.yaml diff --git a/tautulli/docker-compose.yaml b/tautulli/docker-compose.yaml new file mode 100644 index 0000000..72f33f0 --- /dev/null +++ b/tautulli/docker-compose.yaml @@ -0,0 +1,17 @@ +--- +version: "2" +services: + tautulli: + image: linuxserver/tautulli + container_name: tautulli + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Paris + volumes: + - tautulli_data:/config + - tautulli_logs:/logs + ports: + - 8181:8181 + restart: unless-stopped +... \ No newline at end of file