commit 470fc0d1f67bd99068cb33229260d78ca3fd9672 Author: stephane.david Date: Thu Jul 24 18:10:41 2025 +0200 First version 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