Open cinetube opened 3 years ago
were you able to pass this problem?
After few trial and error, here is what work for me. The apps look nices, but lacking some essential feature like tagging
version: '2'
services:
notea:
container_name: notea
image: cinwell/notea
ports:
- '9030:3000'
depends_on:
- minio
environment:
- STORE_ACCESS_KEY=minio
- STORE_SECRET_KEY=minio123
- STORE_BUCKET=notea
- PASSWORD=notea
- STORE_END_POINT=http://minio:9000
- STORE_FORCE_PATH_STYLE= true
restart: unless-stopped
networks:
- notea
minio:
image: minio/minio
container_name: notea_minio
ports:
- '3001:9000'
- '3002:9001'
environment:
- MINIO_ROOT_USER=minio
- MINIO_ROOT_PASSWORD=minio123
command: server /data --console-address ":3001"
volumes:
- ./minio:/data
networks:
- notea
networks:
notea: {}
Here is my docker compose -
I am facing problem to connect Notea with notea-db. Please help me to resolve this error. @QingWei-Li