mirror of
https://git.cloudron.io/cloudron/minio-app
synced 2025-01-05 12:12:02 +00:00
e0ce87b291
minio now stores the config as part of the storage system under .minio.sys when passed config dir, it merely "migrates" config.json to the new system and renames config.json to config.json.deprecated
15 lines
432 B
Docker
15 lines
432 B
Docker
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
|
|
|
|
ARG VERSION=RELEASE.2020-01-16T03-05-44Z
|
|
|
|
RUN mkdir -p /app/code \
|
|
&& wget https://dl.minio.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio \
|
|
&& chmod +x /app/code/minio
|
|
|
|
WORKDIR /app/code
|
|
|
|
ADD start.sh /app/code/start.sh
|
|
ADD minio-credentials /app/code/minio-credentials
|
|
|
|
CMD [ "/app/code/start.sh" ]
|