Initial commit

This commit is contained in:
georgew 2026-01-25 15:35:38 +00:00
commit b6dcde6740
2 changed files with 27 additions and 0 deletions

10
.gitignore vendored Normal file
View file

@ -0,0 +1,10 @@
# Ignore the actual library and heavy data
audiobooks/
podcasts/
metadata/
# Ignore the application database and settings
config/
# Ignore secrets
.env

17
docker-compose.yaml Normal file
View file

@ -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