Sign inSign up

kizaing/kavitaemail

By kizaing

Updated about 3 years ago

Image
0

100K+

kizaing/kavitaemail repository overview

NOTICE!: This repo is here for archival purposes and will no longer be updated. You can find updated images at the new repo

Kavita Email

This is a simple email relay server that handles emails from Kavita application. By default, Kavita installations will use the Kavita hosted email service. However, if a user wants to setup their own SMTP service, then they can run their own instance of this microService.

Installation

With Docker Run

docker run --name kavita-email -p 5003:5003 -v ${PWD}/config:/app/config -d kizaing/kavitaemail:latest

With Docker Compose
version: '3'
services:
     email:
        image: kizaing/kavitaemail:latest
        container_name: kavita-email
        volumes:
           - ./config:/app/config
        ports:
           - "5003:5003"
        restart: unless-stopped

After the first run, shut down the container and edit the appsettings.json file inside the config folder. When the settings are to your liking, restart and it should apply your SMTP settings.

Tag summary

Content type

Image

Digest

sha256:754dfa15e

Size

137.4 MB

Last updated

about 3 years ago

docker pull kizaing/kavitaemail