Komga

Just another WordPress site

Komga

As mentioned in our last post, looking for a replacement for ubooquity as our comic book reader, we stumbled upon Komga, and we liked the way it looked. After some dry running we even decided to hook it up with nginx, making it possible to make use of it more secure outside our network. This all worked out fine, and we were pleased with the look and feel, and the way you are able to handle users.

version: '3.3'
services:
  komga:
    image: gotson/komga
    container_name: Komga
    environment:
      - PORT=8080
      - ROOT_URL=####{hostname}####
      - VIRTUAL_HOST=####{hostname}####
      - VIRTUAL_PORT=9090
      - LETSENCRYPT_HOST=####{hostname}####
      - LETSENCRYPT_EMAIL=####{email}####
    volumes:
      - /mnt/docker-compose-files/komga/config:/config
      - /mnt/media/comics:/data
    ports:
      - 9090:8080
    restart: unless-stopped
    networks:
      - nginx-proxy

networks:
  nginx-proxy:
    external:
      name: proxy_nginx

Hits: 14