mirror of
https://github.com/QingWei-Li/notea.git
synced 2024-11-29 04:42:29 +03:00
13 lines
316 B
YAML
13 lines
316 B
YAML
version: '2'
|
|
|
|
services:
|
|
minio:
|
|
image: minio/minio
|
|
ports:
|
|
- '9000:9000'
|
|
environment:
|
|
MINIO_ACCESS_KEY: minio
|
|
MINIO_SECRET_KEY: minio123
|
|
entrypoint: sh
|
|
command: -c 'mkdir -p /data/notea && mkdir -p /data/notea-test && minio server /data'
|