Skip to content

hypnotoad08/openaudible-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 

Repository files navigation

OpenAudible in Docker

Run OpenAudible directly in your browser.
Container built on linuxserver/docker-baseimage/kasmvnc, running the official releases of OpenAudible from their github

Application Setup

The application can be accessed at:

Usage

Some snippets to get you started.

docker-compose

services:
  openaudible:
    image: ghcr.io/hypnotoad08/openaudible-docker:main
    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

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/hypnotoad08/openaudible-docker:main

Additional environment variables can be found here.

About

Run OpenAudible directly in your browser.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Dockerfile 97.8%
  • Shell 2.2%