diff --git a/kavita/docker-compose.yml b/kavita/docker-compose.yml new file mode 100644 index 0000000..29630cc --- /dev/null +++ b/kavita/docker-compose.yml @@ -0,0 +1,13 @@ +services: + kavita: + image: jvmilazz0/kavita:latest # Using the stable branch from the offical repo. + container_name: kavita + volumes: + - /data/media/Books:/books # + - ./config:/kavita/config # Change './data if you want to have the config files in a different place. + # /kavita/config must not be changed + environment: + - TZ=Etc/UTC + ports: + - "5000:5000" # Change the public port (the first 5000) if you have conflicts with other services + restart: unless-stopped