mirror of
				https://github.com/tborychowski/self-hosted-cookbook.git
				synced 2025-11-04 07:37:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			756 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			756 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# AudioBookshelf
 | 
						|
Self-hosted Audiobook Server.
 | 
						|
- It takes a while to adjust the folder structure and file naming for the scanner to pick it up correctly (and then manually fixing them in the UI)
 | 
						|
- Looks good and works nicely in a desktop browser
 | 
						|
- Unfortunately it doesn't work on mobile
 | 
						|
 | 
						|
 | 
						|
<br>
 | 
						|
 | 
						|
- [Homepage](https://www.audiobookshelf.org)
 | 
						|
- [Github repo](https://github.com/advplyr/audiobookshelf)
 | 
						|
 | 
						|
 | 
						|
## docker-compose.yml
 | 
						|
```yml
 | 
						|
---
 | 
						|
version: '3.3'
 | 
						|
services:
 | 
						|
  audiobookshelf:
 | 
						|
    image: advplyr/audiobookshelf
 | 
						|
    container_name: audiobookshelf
 | 
						|
    restart: unless-stopped
 | 
						|
    ports:
 | 
						|
      - "1337:80"
 | 
						|
    volumes:
 | 
						|
      - ./config:/config
 | 
						|
      - ./metadata:/metadata
 | 
						|
      - ./audiobooks:/audiobooks
 | 
						|
```
 | 
						|
 | 
						|
Default username is **root** with no password.
 |