mirror of
https://github.com/audiobookshelf/audiobookshelf-web.git
synced 2025-08-17 16:01:03 +02:00
46 lines
No EOL
2 KiB
Vue
46 lines
No EOL
2 KiB
Vue
<template>
|
|
<div id="install-docker" class="py-10 md:py-20">
|
|
<h1 class="text-xl md:text-3xl mb-4 md:-ml-8">
|
|
<nuxt-link to="#install-docker"><span class="material-icons text-lg md:text-xl text-gray-400 hover:text-white cursor-pointer mr-2">tag</span></nuxt-link
|
|
>Docker
|
|
</h1>
|
|
|
|
<p class="mb-2 text-sm md:text-base">Multi-architecture image for amd64, arm64 and arm/v7</p>
|
|
|
|
<pre>
|
|
<code class="language-bash">
|
|
docker pull ghcr.io/advplyr/audiobookshelf
|
|
|
|
docker run -d \
|
|
-e AUDIOBOOKSHELF_UID=99 \
|
|
-e AUDIOBOOKSHELF_GID=100 \
|
|
-p 13378:80 \
|
|
-v </path/to/config>:/config \
|
|
-v </path/to/metadata>:/metadata \
|
|
-v </path/to/audiobooks>:/audiobooks \
|
|
-v </path/to/podcasts>:/podcasts \
|
|
--name audiobookshelf \
|
|
--rm ghcr.io/advplyr/audiobookshelf</code>
|
|
</pre>
|
|
|
|
<p class="text-error">Note: Volume mappings should all be separate directories that are not contained in eachother.</p>
|
|
<!-- <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> -->
|
|
|
|
<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>
|
|
<p>• <span class="font-mono">/metadata</span> will contain cache, streams, covers, downloads, backups and logs</p>
|
|
<p>• Map any other directories you want to use for your book and podcast collections (ebooks supported as experimental)</p>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
mounted() {}
|
|
}
|
|
</script> |