2021-09-26 11:45:07 -05:00
|
|
|
<template>
|
2022-05-15 14:23:22 -05:00
|
|
|
<div class="w-full max-w-5xl mx-auto px-2 py-8">
|
|
|
|
<h1 id="docker" class="text-3xl mb-2 -ml-8">
|
2021-09-26 11:45:07 -05:00
|
|
|
<nuxt-link to="#docker"><span class="material-icons text-xl text-gray-400 hover:text-white cursor-pointer mr-2">tag</span></nuxt-link
|
|
|
|
>Docker Install
|
|
|
|
</h1>
|
|
|
|
|
2022-01-10 08:51:59 -06:00
|
|
|
<p class="mb-2 text-sm md:text-base">Multi-architecture image for amd64, arm64 and arm/v7</p>
|
2021-10-31 13:14:21 -05:00
|
|
|
|
2021-09-26 11:45:07 -05:00
|
|
|
<pre>
|
2022-04-25 16:40:55 -05:00
|
|
|
<code class="language-bash">docker pull ghcr.io/advplyr/audiobookshelf
|
2021-09-26 11:45:07 -05:00
|
|
|
|
|
|
|
docker run -d \
|
2022-02-18 18:29:02 -06:00
|
|
|
-e AUDIOBOOKSHELF_UID=99 \
|
|
|
|
-e AUDIOBOOKSHELF_GID=100 \
|
2021-12-22 19:23:27 -06:00
|
|
|
-p 13378:80 \
|
2021-09-26 11:45:07 -05:00
|
|
|
-v </path/to/config>:/config \
|
|
|
|
-v </path/to/metadata>:/metadata \
|
2022-05-15 13:52:25 -05:00
|
|
|
-v </path/to/audiobooks>:/audiobooks \
|
|
|
|
-v </path/to/podcasts>:/podcasts \
|
2021-09-26 11:45:07 -05:00
|
|
|
--name audiobookshelf \
|
2022-04-25 16:40:55 -05:00
|
|
|
--rm ghcr.io/advplyr/audiobookshelf</code>
|
2021-10-10 17:14:05 -05:00
|
|
|
</pre>
|
|
|
|
|
|
|
|
<p class="text-error">Note: Volume mappings should all be separate directories that are not contained in eachother.</p>
|
2021-12-15 17:56:10 -06:00
|
|
|
<!-- <p class="text-warning py-1">Unraid users: it is recommended that you map <span class="font-mono">/config</span> and <span class="font-mono">/metadata</span> to <span class="font-mono">/mnt/user/appdata/audiobookshelf/config</span> and <span class="font-mono">/mnt/user/appdata/audiobookshelf/metadata</span> respectively.</p> -->
|
2021-10-10 17:14:05 -05:00
|
|
|
|
|
|
|
<p class="mt-2 mb-1 font-semibold text-lg">Volume mappings</p>
|
|
|
|
<p>• <span class="font-mono">/config</span> will contain the database (users/books/libraries/settings)</p>
|
2022-01-10 08:51:59 -06:00
|
|
|
<p>• <span class="font-mono">/metadata</span> will contain cache, streams, covers, downloads, backups and logs</p>
|
2022-04-24 10:05:51 -05:00
|
|
|
<p>• Map any other directories you want to use for your book and podcast collections (ebooks supported as experimental)</p>
|
2021-09-26 11:45:07 -05:00
|
|
|
|
|
|
|
<div class="w-full h-px bg-gray-400 my-6" />
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
2021-10-31 13:14:21 -05:00
|
|
|
<h1 id="linux" class="text-3xl mb-4 -ml-8">
|
2021-09-26 11:45:07 -05:00
|
|
|
<nuxt-link to="#linux"><span class="material-icons text-xl text-gray-400 hover:text-white cursor-pointer mr-2">tag</span></nuxt-link
|
|
|
|
>Linux Install
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<span class="text-error">Note: Only for amd64 architecture</span>
|
2021-12-15 18:13:30 -06:00
|
|
|
<p class="mb-2 mt-1 text-sm md:text-base">Will use config file <span class="bg-white bg-opacity-10 text-gray-100 rounded-md px-1 py-0.5 font-mono">/etc/default/audiobookshelf</span> if exists or create the following default config:</p>
|
|
|
|
|
|
|
|
<pre>
|
2022-05-15 13:52:25 -05:00
|
|
|
<code class="language-bash"> METADATA_PATH="/usr/share/audiobookshelf/metadata"
|
2021-12-15 18:13:30 -06:00
|
|
|
CONFIG_PATH="/usr/share/audiobookshelf/config"
|
|
|
|
FFMPEG_PATH="/usr/lib/audiobookshelf-ffmpeg/ffmpeg"
|
2022-02-21 12:22:08 -06:00
|
|
|
FFPROBE_PATH="/usr/lib/audiobookshelf-ffmpeg/ffprobe"
|
2021-12-15 18:13:30 -06:00
|
|
|
PORT=7331</code>
|
|
|
|
</pre>
|
2021-09-26 11:45:07 -05:00
|
|
|
|
|
|
|
<br />
|
|
|
|
|
2021-10-31 13:14:21 -05:00
|
|
|
<h2 id="ubuntu" class="text-2xl mb-2 -ml-6">
|
2021-09-26 11:45:07 -05:00
|
|
|
<nuxt-link to="#ubuntu"><span class="material-icons text-lg text-gray-400 hover:text-white cursor-pointer mr-2">tag</span></nuxt-link
|
|
|
|
>Ubuntu Install (PPA)
|
|
|
|
</h2>
|
|
|
|
|
2022-04-24 10:05:51 -05:00
|
|
|
<div class="flex -ml-8 mt-6 mb-4">
|
|
|
|
<div>
|
|
|
|
<span class="material-icons text-warning text-2xl">priority_high</span>
|
|
|
|
</div>
|
|
|
|
<p class="pl-2 text-base md:text-lg">
|
|
|
|
If you get invalid certificate issues with the PPA then update the file <span class="bg-white bg-opacity-10 text-gray-100 rounded-md px-1 py-0.5 font-mono">/etc/apt/sources.list.d/audiobookshelf.list</span> to <span class="bg-white bg-opacity-10 text-gray-100 rounded-md px-1 py-0.5 font-mono">deb [trusted=yes] https://advplyr.github.io/audiobookshelf-ppa ./</span>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
2021-09-26 11:45:07 -05:00
|
|
|
<pre>
|
|
|
|
<code class="language-bash">curl -s --compressed "https://advplyr.github.io/audiobookshelf-ppa/KEY.gpg" | sudo apt-key add -
|
|
|
|
|
|
|
|
sudo curl -s --compressed -o /etc/apt/sources.list.d/audiobookshelf.list "https://advplyr.github.io/audiobookshelf-ppa/audiobookshelf.list"
|
|
|
|
|
|
|
|
sudo apt update
|
|
|
|
|
|
|
|
sudo apt install audiobookshelf</code>
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<p class="text-lg">or use this one liner</p>
|
|
|
|
<pre>
|
|
|
|
<code class="language-bash">curl -s --compressed "https://advplyr.github.io/audiobookshelf-ppa/KEY.gpg" | sudo apt-key add - && sudo curl -s --compressed -o /etc/apt/sources.list.d/audiobookshelf.list "https://advplyr.github.io/audiobookshelf-ppa/audiobookshelf.list" && sudo apt update && sudo apt install audiobookshelf</code>
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
2021-10-31 13:14:21 -05:00
|
|
|
<h2 id="debian" class="text-2xl mb-2 mt-6 -ml-6">
|
2021-09-26 11:45:07 -05:00
|
|
|
<nuxt-link to="#debian"><span class="material-icons text-lg text-gray-400 hover:text-white cursor-pointer mr-2">tag</span></nuxt-link
|
|
|
|
>All other Linux Distros
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<p class="mb-4 text-sm md:text-base">Grab the latest debian package from the <a href="https://github.com/advplyr/audiobookshelf-ppa" target="_blank" class="underline text-blue-400 hover:text-blue-200">audiobookshelf-ppa</a> github repository, and install.</p>
|
|
|
|
|
|
|
|
<pre>
|
2022-04-24 10:05:51 -05:00
|
|
|
<code class="language-bash">wget https://advplyr.github.io/audiobookshelf-ppa/audiobookshelf_2.0.2_amd64.deb
|
2021-09-26 11:45:07 -05:00
|
|
|
|
2022-04-24 10:05:51 -05:00
|
|
|
sudo apt install ./audiobookshelf_2.0.2_amd64.deb</code>
|
2021-09-26 11:45:07 -05:00
|
|
|
</pre>
|
|
|
|
|
2021-12-15 18:13:30 -06:00
|
|
|
<div class="w-full bg-white bg-opacity-20 h-px my-8" />
|
|
|
|
|
|
|
|
<h1 id="reverse-proxy" class="text-3xl mb-4 -ml-8">
|
|
|
|
<nuxt-link to="#reverse-proxy"><span class="material-icons text-xl text-gray-400 hover:text-white cursor-pointer mr-2">tag</span></nuxt-link
|
|
|
|
>Reverse Proxy Setup
|
|
|
|
</h1>
|
|
|
|
<a href="https://github.com/advplyr/audiobookshelf#reverse-proxy-set-up" class="text-blue-500 hover:text-blue-300 underline">See Github Readme</a>
|
|
|
|
|
|
|
|
<div class="w-full bg-white bg-opacity-20 h-px my-8" />
|
2022-01-17 17:58:30 -06:00
|
|
|
|
|
|
|
<h1 id="mobile" class="text-3xl mb-4 -ml-8">
|
|
|
|
<nuxt-link to="#mobile"><span class="material-icons text-xl text-gray-400 hover:text-white cursor-pointer mr-2">tag</span></nuxt-link>
|
|
|
|
Mobile Apps <span class="italic text-xl">(beta)</span>
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<p class="mb-4">The mobile apps are open source on <a href="https://github.com/advplyr/audiobookshelf-app" class="text-blue-500 hover:text-blue-300 underline" target="_blank">Github</a>. Report bugs and suggest features there.</p>
|
|
|
|
|
|
|
|
<h2 class="text-lg font-semibold">Android</h2>
|
|
|
|
<a href="https://play.google.com/store/apps/details?id=com.audiobookshelf.app" class="text-blue-500 hover:text-blue-300 underline" target="_blank">Install from the Google Play Store.</a>
|
|
|
|
|
|
|
|
<h2 class="text-lg font-semibold mt-4">iOS</h2>
|
|
|
|
<a href="https://testflight.apple.com/join/wiic7QIW" class="text-blue-500 hover:text-blue-300 underline" target="_blank">Join Test Flight beta testing and install the app.</a>
|
|
|
|
|
|
|
|
<div class="w-full bg-white bg-opacity-20 h-px my-8" />
|
2021-09-26 11:45:07 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {}
|
|
|
|
},
|
|
|
|
computed: {},
|
|
|
|
methods: {},
|
|
|
|
mounted() {
|
|
|
|
if (typeof Prism !== undefined) {
|
|
|
|
Prism.highlightAll()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|