This Image is automatically built and pushed every 15 minutes
Original Projects:
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
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
Content type
Image
Digest
sha256:e331f7876…
Size
148 MB
Last updated
about 4 years ago
docker pull diamkil/notea