This PR pulls in the most basic of features and allows for users to deploy the Docker image. More features to follow however the basics of reading and managing comics/manga is in this release and allows for the user to deploy. More documentation to follow however the current docker-compose.yml would look like...
version: '3'
services:
app:
image: ghcr.io/jakehwll/yomi
container_name: yomi
ports:
- 39065:3000
environment:
# the public place to access your site, i.e yomi.example.com
- NEXTAUTH_URL=
# secrets to be shared for basic password authentication
- NEXTAUTH_SECRET=SeKrItPaSSworD
# you can change the location of the database if that suits also.
- DATABASE_URL=file:/data/config/prod.db
# currently useless but required if running in docker
- DOCKER_ENV=production
volumes:
- .../manga:/data/library
- .../config:/data/config
restart: unless-stopped
Changes
This PR pulls in the most basic of features and allows for users to deploy the Docker image. More features to follow however the basics of reading and managing comics/manga is in this release and allows for the user to deploy. More documentation to follow however the current
docker-compose.yml
would look like...