From 470fc0d1f67bd99068cb33229260d78ca3fd9672 Mon Sep 17 00:00:00 2001 From: "stephane.david" Date: Thu, 24 Jul 2025 18:10:41 +0200 Subject: [PATCH] First version --- Dockerfile | 4 ++++ docker-compose.yml | 14 ++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 Dockerfile create mode 100644 docker-compose.yml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0300538 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM ubuntu:latest +LABEL authors="stephane.david" + +ENTRYPOINT ["top", "-b"] \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..0934823 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +services: + whisparr: + container_name: whisparr + image: ghcr.io/hotio/whisparr + ports: + - "6969:6969" + environment: + - PUID=1000 + - PGID=1000 + - UMASK=002 + - TZ=Etc/Paris + volumes: + - /var/lib/docker/volumes/whisparr/config:/config + - /var/lib/docker/volumes/whisparr/data:/data \ No newline at end of file