From ea07f4b90fc2ccaa5d08513c83f3bed03216c255 Mon Sep 17 00:00:00 2001 From: mattspeer Date: Tue, 16 Dec 2025 16:29:10 -0600 Subject: [PATCH] Upload files to "/" Initial commit --- README.md | 5 +++++ docker-compose.yaml | 14 ++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 README.md create mode 100644 docker-compose.yaml diff --git a/README.md b/README.md new file mode 100644 index 0000000..0a063d1 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Auto-m4b + +## Description + +Auto-M4B is a software tool designed to automate the conversion of audio files into M4B format, commonly used for audiobooks. It streamlines the process by handling file organization, chapter creation, and metadata tagging, making it easy to create professional-quality audiobooks efficiently. \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..421e418 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,14 @@ +version: '3.7' +services: + auto-m4b: + image: seanap/auto-m4b + container_name: auto-m4b + volumes: + - /home/mattspeer/docker/auto-m4b/config:/config + - /downloads/auto-m4b/temp:/temp + environment: + - PUID=1000 + - PGID=1000 + - CPU_CORES=2 + - SLEEPTIME=1m + - MAKE_BACKUP=Y \ No newline at end of file