From 29f90fe409dc9faa19f7a88eced89742120e3d39 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Thu, 6 Jan 2022 09:50:35 +0100 Subject: [PATCH] feat: minio port --- .env.sample | 4 ++++ compose.minio.yml | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 compose.minio.yml diff --git a/.env.sample b/.env.sample index 19b6990..4c918d2 100644 --- a/.env.sample +++ b/.env.sample @@ -98,3 +98,7 @@ COMPOSE_FILE="compose.yml" ## Matrix #COMPOSE_FILE="$COMPOSE_FILE:compose.matrix.yml" #MATRIX_FEDERATION_ENABLED=1 + +## Minio +#COMPOSE_FILE="$COMPOSE_FILE:compose.minio.yml" +#MINIO_CONSOLE_ENABLED=1 diff --git a/compose.minio.yml b/compose.minio.yml new file mode 100644 index 0000000..44dceb1 --- /dev/null +++ b/compose.minio.yml @@ -0,0 +1,9 @@ +--- +version: "3.8" + +services: + app: + environment: + - MINIO_CONSOLE_ENABLED + ports: + - "9001:9001"