commit b6dcde6740a90ea2ba73b8aa0e20acae1c5b455a Author: georgew Date: Sun Jan 25 15:35:38 2026 +0000 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d8139ce --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Ignore the actual library and heavy data +audiobooks/ +podcasts/ +metadata/ + +# Ignore the application database and settings +config/ + +# Ignore secrets +.env diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..00f5dd9 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,17 @@ +services: + audiobookshelf: + image: ghcr.io/advplyr/audiobookshelf:latest + container_name: audiobookshelf + restart: always + networks: + - web_traffic + volumes: + - ./audiobooks:/audiobooks + - ./podcasts:/podcasts + - ./config:/config + - ./metadata:/metadata + - /home/george/google-drive:/google-drive:rshared + +networks: + web_traffic: + external: true