Initial commit
This commit is contained in:
commit
b6dcde6740
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal 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
17
docker-compose.yaml
Normal 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
|
||||||
Loading…
Reference in a new issue