Notea

Notea

Docker app from diamkil's Repository

Overview

Self hosted note taking, alternative to Notions. Look at Github for config

docker-notea-stack

Due to me bein in vacation and not using Notea, this imagine is currently not supported. If you want to fix something open a pr and I'll merge it if it looks good

This is my image combining Notea and MinIO into one single image. I saw lots of people on reddit and on Notea’s GitHub that had to install MinIO simply to use Notea and didn’t need it for anything else. This image solves the problem entirely! Simply use the commands below to run Notea Stack.

Original Projects:

  1. Notea: https://github.com/QingWei-Li/notea
  2. MinIO: https://github.com/minio/minio

Docker Run

docker run -d \
    --name=Notea \
    -p 3000:3000 \
    -p 9000:9000 \ #Optional, only if you want to be able to access MinIO's interface
    -e PASSWORD=(notea web password) \
    -e STORE_USER=(minio username) \
    -e STORE_PASSWORD=(minio password) \
    -v /path/to/storage:/data \
    diamkil/notea:latest

Docker-Compose

version: "3.3"
services:
  notea:
    container_name: Notea
    ports:
      - "3000:3000"
      - "9000:9000" #Optional, only if you want to be able to access MinIO's interface
    environment:
      - PASSWORD=(notea web password)
      - STORE_USER=(minio username)
      - STORE_PASSWORD=(minio password)
    volumes:
      - "/path/to/storage:/data"
    image: "diamkil/notea:latest"

Maybe some might get confused but to clarify: You choose all the values for the environment variables. Port 9000 gives access to the MinIO webUI but it’s not really needed to have the port, although if your main use for MinIO is Notea and you end up needing it somewhere else you can always open the port and use it with other services

Install Notea on Unraid in a few clicks.

Find Notea in Community Apps on your Unraid server, review the template, and click Install. Unraid handles the Docker app or plugin setup from the published template.

Open the Apps tab on your Unraid server Search Community Apps for Notea Review the template variables and paths Click Install

Categories

Download Statistics

65,247
Total Downloads
5
This Month
121
Avg / Month

Total Downloads Over Time

Loading chart...

Related apps

Explore more like this

Explore all

Details

Repository
diamkil/notea
Last Updated2022-08-30
First Seen2021-05-03

Runtime arguments

Web UI
http://[IP]:[PORT:3000]/
Privileged
false

Template configuration

Notea PortPorttcp

Port for Notea WebUI

Target
3000
MinIO PortPorttcp

Port for MinIO WebUI

Target
9000
WebUI PasswordVariable

Set the password to use on Notea's Website

Target
PASSWORD
MinIO UserVariable

User for MinIO Backend

Target
STORE_USER
MinIO PasswordVariable

Password for MinIO Backend

Target
STORE_PASSWORD