Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Minio #220

Merged
merged 6 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
55 changes: 55 additions & 0 deletions Apps/minio/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Configuration for big-bear-minio setup
name: big-bear-minio
# Service definitions for the big-bear-minio application
services:
# Service name: app
app:
image: minio/minio:RELEASE.2024-02-24T17-11-14Z # The Docker image to use (latest version of minio)
container_name: minio # Name of the container instance
volumes:
- /DATA/AppData/$AppID:/data # Mounting the project directory inside the container
ports:
- "9010:9000" # Expose minio's port 9000 on the host's port 9010
- "9011:9001" # Expose minio web console's port 9001 on the host's port 9011
environment:
MINIO_ROOT_PASSWORD: 'minioadmin'
MINIO_ROOT_USER: 'minioadmin'
restart: unless-stopped # Policy to restart the container if it stops unexpectedly
command: server --console-address ":9001" /data
x-casaos: # CasaOS specific configuration
envs:
- container: MINIO_ROOT_USER
description:
en_us: 'Minio Console User'
- container: MINIO_ROOT_PASSWORD
description:
en_us: 'Minio Console Password'
volumes:
- container: /data
description:
en_us: "Container Path: /data"
ports:
- container: "9002"
description:
en_us: "Container Port: 9002"

# CasaOS specific configuration
x-casaos:
architectures: # Supported CPU architectures
- amd64
- arm
- arm64
main: app # Main service of the application
description:
en_us: A distributed object storage server built for cloud applications and devops. Default credentials 'minioadmin:minioadmin', we recommend that you change these values with 'MINIO_ROOT_USER' and 'MINIO_ROOT_PASSWORD' environment variables. # Description in English
tagline:
en_us: An open-source S3 alternative # Short description or tagline in English
developer: "minio" # Developer's name or identifier
author: BigBearCommunity # Author of this configuration
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/minio.png # Icon for the application
thumbnail: "" # Thumbnail image (currently empty)
title:
en_us: Minio # Title in English
category: BigBearCasaOS # Application category
port_map: "9011" # Port mapping information
scheme: http # URL scheme for the application
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ If you have a suggestion for an app, please post in the [BigBearCommunity](https
| Mailpit | axllent/mailpit | v1.13 | [YouTube Video](https://youtu.be/2MY3S6csrVw) |
| Mealie | hkotel/mealie | v1.2.0 | [YouTube Video](https://youtu.be/S4MfNLV2Uf4) | |
| MIND | mrcas/mind | v1.3.3 | |
| Minio | minio/minio | RELEASE.2024-02-24T17-11-14Z | |
| Mumble Server | mumblevoip/mumble-server | v1.4.230-6 | |
| MySpeed | germannewsmaker/myspeed | 1.0.8 | [YouTube Video](https://youtu.be/7roj87Fytz0) |
| n8n | n8nio/n8n | 1.29.1 | |
Expand Down