Self hosted note taking app stored on Amazon S3 or like.
500K+
Self hosted note taking app stored on S3.
Click https://vercel.com/new to deploy your fork repo.
Click https://app.netlify.com/start to deploy your fork repo.
docker run -d \
--name notea \
-p 3000:3000 \
-e STORE_ACCESS_KEY=Q3AM3UQ867SPQQA43P2F \
-e STORE_SECRET_KEY=zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG \
-e STORE_BUCKET=notea \
-e STORE_END_POINT=http://play.minio.io \
-e STORE_FORCE_PATH_STYLE=true \
-e PASSWORD=notea \
cinwell/notea
You can use watchtower to keep the latest version.
docker run -d \
-v /var/run/docker.sock:/var/run/docker.sock \
containrrr/watchtower -c notea
If you are looking for MinIO + Notea docker configuration check this
Configure environment variables according to storage service.
.env
STORE_ACCESS_KEY=
STORE_SECRET_KEY=
STORE_BUCKET=notea
STORE_END_POINT=http://localhost:9000
# Required
STORE_FORCE_PATH_STYLE=true
PASSWORD=
.env
STORE_ACCESS_KEY=
STORE_SECRET_KEY=
STORE_BUCKET=notea
STORE_REGION=us-east-1
PASSWORD=
.env
STORE_ACCESS_KEY=
STORE_SECRET_KEY=
STORE_BUCKET=notea
STORE_END_POINT=https://oss-cn-hangzhou.aliyuncs.com
STORE_REGION=oss-cn-hangzhou
PASSWORD=
.env
STORE_ACCESS_KEY=
STORE_SECRET_KEY=
STORE_BUCKET=notea # create the bucket first
STORE_END_POINT=https://cos.ap-guangzhou.myqcloud.com
STORE_REGION=ap-guangzhou
PASSWORD=
Other services that support the s3 protocol can also be used. Contribution examples are welcome.
| Name | Description | Default | Optional | Required |
|---|---|---|---|---|
| PASSWORD | password to login to the app | true | ||
| STORE_ACCESS_KEY | accessKey | true | ||
| STORE_SECRET_KEY | secretKey | true | ||
| STORE_BUCKET | bucket | true | ||
| STORE_END_POINT | host name or an IP address. | |||
| STORE_REGION | region | us-east-1 | ||
| STORE_FORCE_PATH_STYLE | Whether to force path style URLs for S3 objects | false | ||
| COOKIE_SECURE | only works under https: scheme If the website is not https, you may not be able to log in, you need to set it to false | true | ||
| BASE_URL | The domain of the website, used for SEO |
docker-compose up -d
yarn dev
MIT
Content type
Image
Digest
Size
87.5 MB
Last updated
about 5 years ago
docker pull cinwell/notea