mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-13 22:48:20 +00:00
20 lines
488 B
Diff
20 lines
488 B
Diff
|
# MinIO
|
||
|
minio:
|
||
|
image: {{ MINIO_DOCKER_REGISTRY }}{{ MINIO_DOCKER_IMAGE_SERVER }}
|
||
|
volumes:
|
||
|
- ../../data/minio:/data
|
||
|
ports:
|
||
|
- "9000:9000"
|
||
|
environment:
|
||
|
MINIO_ACCESS_KEY: "{{ OPENEDX_AWS_ACCESS_KEY }}"
|
||
|
MINIO_SECRET_KEY: "{{ OPENEDX_AWS_SECRET_ACCESS_KEY }}"
|
||
|
command: server /data
|
||
|
restart: unless-stopped
|
||
|
|
||
|
minio-client:
|
||
|
image: {{ MINIO_DOCKER_REGISTRY }}{{ MINIO_DOCKER_IMAGE_CLIENT }}
|
||
|
entrypoint: sh
|
||
|
command: "mc ls"
|
||
|
restart: "no"
|
||
|
depends_on:
|
||
|
- minio
|