mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
Updated README with Docker instructions (#226)
* Add arm dockerfile * Added Docker instructions
This commit is contained in:
parent
7b02ddf8b1
commit
54878b14f4
27
README.md
27
README.md
@ -36,7 +36,32 @@ your manga collection with your friends and family!
|
|||||||
- If you are updating, do not copy appsettings.json from the new version over. It will override your TokenKey and you will have to reauthenticate on your devices.
|
- If you are updating, do not copy appsettings.json from the new version over. It will override your TokenKey and you will have to reauthenticate on your devices.
|
||||||
|
|
||||||
## Docker
|
## Docker
|
||||||
- Docker is supported and tested, you can find the image and instructions [here](https://github.com/Kizaing/KavitaDocker).
|
Running your Kavita server in docker is super easy! Barely an inconvenience. You can run it with this command:
|
||||||
|
|
||||||
|
```
|
||||||
|
docker run --name kavita -p 5000:5000 \
|
||||||
|
-v /your/manga/directory:/manga \
|
||||||
|
-v /kavita/data/directory:/kavita/data \
|
||||||
|
--restart unless-stopped \
|
||||||
|
-d kizaing/kavita:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also run it via the docker-compose file:
|
||||||
|
|
||||||
|
```
|
||||||
|
version: '3.9'
|
||||||
|
services:
|
||||||
|
kavita:
|
||||||
|
image: kizaing/kavita:latest
|
||||||
|
volumes:
|
||||||
|
- ./manga:/manga
|
||||||
|
- ./data:/kavita/data
|
||||||
|
ports:
|
||||||
|
- "5000:5000"
|
||||||
|
restart: unless-stopped
|
||||||
|
```
|
||||||
|
|
||||||
|
Note: Kavita is under heavy development and is being updated all the time, so the tag for current builds is :nightly. The :latest tag will be the latest stable release. There is also the :alpine tag if you want a smaller image, but it is only available for x64 systems.
|
||||||
|
|
||||||
## Want to help?
|
## Want to help?
|
||||||
I am looking for developers with a passion for building the next Plex for Manga, Comics, and Ebooks. I need developers with C#/ASP.NET, Angular 11 or CSS experience.
|
I am looking for developers with a passion for building the next Plex for Manga, Comics, and Ebooks. I need developers with C#/ASP.NET, Angular 11 or CSS experience.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user