From d8c608c53de26ff7a053fb31ae4d105839919b81 Mon Sep 17 00:00:00 2001 From: L4RM4ND <21357789+l4rm4nd@users.noreply.github.com> Date: Mon, 27 Feb 2023 02:11:00 +0100 Subject: [PATCH] add minio --- README.md | 3 ++- examples/minio/README.md | 3 +++ examples/minio/docker-compose.yml | 32 +++++++++++++++++++++++++++++++ 3 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 examples/minio/README.md create mode 100644 examples/minio/docker-compose.yml diff --git a/README.md b/README.md index 5f61311..e53aab4 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ docker compose up - [PrivateBin](examples/privatebin) - PrivateBin is a minimalist, opensource online pastebin/discussion board where the server has zero knowledge of hosted data. - [Hemmelig](examples/hemmelig) - Keep your sensitive information out of chat logs, emails, and more with encrypted secrets. Free encrypted secret sharing for everyone! -### File Sharing +### File Sharing / Storage - [Nextcloud](examples/nextcloud) - Access and share your files, calendars, contacts, mail and more from any device, on your terms. - [Seafile](examples/seafile) - File hosting and sharing solution primary for teams and organizations. - [SFTPGo](examples/sftpgo) - Fully featured and highly configurable SFTP server with optional HTTP/S, FTP/S and WebDAV support - S3, Google Cloud Storage, Azure Blob. @@ -121,6 +121,7 @@ docker compose up - [Pwndrop](examples/pwndrop) - pwndrop is a self-deployable file hosting service for sending out red teaming payloads or securely sharing your private files over HTTP and WebDAV. - [Droppy](examples/droppy) (deprecated) - droppy is a self-hosted file storage server with a web interface and capabilities to edit files and view media directly in the browser. It is particularly well-suited to be run on low-end hardware like the Raspberry Pi. - [PairDrop](examples/pairdrop) - PairDrop is a sublime alternative to AirDrop that works on all platforms. Send images, documents or text via peer to peer connection to devices in the same local network/Wi-Fi or to paired devices. +- [Minio](examples/minio) - MinIO is an object storage server, compatible with Amazon S3 cloud storage service, mainly used for storing unstructured data (such as photos, videos, log files, etc.). ### Publishing, Writing, Blogging, Hosting - [Ghost](examples/ghost) - Ghost is a free and open source blogging platform written in JavaScript and distributed under the MIT License, designed to simplify the process of online publishing for individual bloggers as well as online publications. diff --git a/examples/minio/README.md b/examples/minio/README.md new file mode 100644 index 0000000..eae65d8 --- /dev/null +++ b/examples/minio/README.md @@ -0,0 +1,3 @@ +# References + +- https://hub.docker.com/r/bitnami/minio/ \ No newline at end of file diff --git a/examples/minio/docker-compose.yml b/examples/minio/docker-compose.yml new file mode 100644 index 0000000..e7e00f4 --- /dev/null +++ b/examples/minio/docker-compose.yml @@ -0,0 +1,32 @@ +version: "3" + +services: + minio-s3: + image: bitnami/minio:2023 + container_name: minio + hostname: minio + environment: + - MINIO_ROOT_USER=minio # change this + - MINIO_ROOT_PASSWORD=XscUJuDQP4WuWA55vfXNrc7 # change this + ports: + - 9001:9001/tcp + restart: unless-stopped + volumes: + - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/minio/data:/data + #networks: + # - proxy + #labels: + # - traefik.enable=true + # - traefik.http.routers.minio.rule=Host(`s3.example.com`) + # - traefik.http.services.minio.loadbalancer.server.port=9001 + # - traefik.http.middlewares.limit.buffering.maxRequestBodyBytes=50000000 # optional, only necessary for enabled file uploads + # - traefik.http.middlewares.limit.buffering.maxResponseBodyBytes=50000000 # optional, only necessary for enabled file uploads + # - traefik.http.middlewares.limit.buffering.memRequestBodyBytes=50000000 # optional, only necessary for enabled file uploads + # - traefik.http.middlewares.limit.buffering.memResponseBodyBytes=50000000 # optional, only necessary for enabled file uploads + # - traefik.docker.network=proxy + # # Part for optional traefik middlewares + # - traefik.http.routers.minio.middlewares=local-ipwhitelist@file,basic-auth@file + +#networks: +# proxy: +# external: true