mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-13 14:43:03 +00:00
6a68c4cc20
This commit introduces many changes: - a fully functional minio plugin for local installation - an almost-functional native k8s deployment - a new way to process configuration, better suited to plugins There are still many things to do: - get rid of all the TODOs - get a fully functional minio plugin for k8s - add documentation for pluginso - ...
17 lines
460 B
Plaintext
17 lines
460 B
Plaintext
# MinIO
|
|
minio:
|
|
image: {{ MINIO_DOCKER_REGISTRY }}{{ MINIO_DOCKER_IMAGE_SERVER }}
|
|
volumes:
|
|
- ../../data/minio:/data
|
|
environment:
|
|
MINIO_ACCESS_KEY: "{{ OPENEDX_AWS_ACCESS_KEY }}"
|
|
MINIO_SECRET_KEY: "{{ OPENEDX_AWS_SECRET_ACCESS_KEY }}"
|
|
command: server --address ":9000" /data
|
|
restart: unless-stopped
|
|
|
|
minio-client:
|
|
image: {{ MINIO_DOCKER_REGISTRY }}{{ MINIO_DOCKER_IMAGE_CLIENT }}
|
|
restart: "no"
|
|
entrypoint: sh
|
|
depends_on:
|
|
- minio |