https://github.com/lanjelin/openaudible-docker
Run OpenAudible directly in your browser.
https://github.com/lanjelin/openaudible-docker
docker-image dockerfile openaudible
Last synced: 2 months ago
JSON representation
Run OpenAudible directly in your browser.
- Host: GitHub
- URL: https://github.com/lanjelin/openaudible-docker
- Owner: Lanjelin
- License: gpl-3.0
- Created: 2023-08-03T15:02:08.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-27T17:56:28.000Z (8 months ago)
- Last Synced: 2025-02-12T00:32:56.374Z (8 months ago)
- Topics: docker-image, dockerfile, openaudible
- Language: Dockerfile
- Homepage:
- Size: 36.1 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: .github/README.md
Awesome Lists containing this project
README
# OpenAudible in Docker
Run [OpenAudible](http://openaudible.org/) directly in your browser.
Container built on [linuxserver/docker-baseimage/kasmvnc](https://github.com/linuxserver/docker-baseimage-kasmvnc), running the official releases of OpenAudible from their [github](https://github.com/openaudible/openaudible/releases)## Application Setup
The application can be accessed at:
* http://yourhost:3000/
* https://yourhost:3001/## Usage
Some snippets to get you started.
### docker-compose
```yaml
services:
openaudible:
image: ghcr.io/lanjelin/openaudible-docker:latest
container_name: openaudible
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Oslo
- CUSTOM_USER=JohnDoe # optional, but recommended if exposing to -
- PASSWORD=a-safe-pw # the internet without any other form of authentication
ports:
- "3000:3000" #http
- "3001:3001" #https
volumes:
- /path/to/config:/config
restart: unless-stopped
```### docker cli
```bash
docker run -d \
--name=openaudible \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/Oslo \
-p 3000:3000 \
-p 3001:3001 \
-v /path/to/config:/config \
--restart unless-stopped \
ghcr.io/lanjelin/openaudible-docker:latest
```Additional environment variables can be found [here](https://github.com/linuxserver/docker-baseimage-kasmvnc#options).