-
Notifications
You must be signed in to change notification settings - Fork 1
/
readme-vars.yml
52 lines (43 loc) · 2.05 KB
/
readme-vars.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
# project information
project_name: minio
project_url: "https://min.io/"
project_logo: "https://raw.githubusercontent.com/minio/minio/master/.github/logo.svg"
project_blurb: "MinIO is a High Performance Object Storage released under GNU Affero General Public License v3.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads."
project_github_repo_url: "https://github.com/imagegenius/docker-{{ project_name }}"
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest" }
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest" }
# development version
development_versions: false
# container parameters
common_param_env_vars_enabled: true
param_container_name: "{{ project_name }}"
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "path_to_appdata", desc: "Appdata/Bucket Path" }
param_usage_include_ports: true
param_ports:
- { external_port: "9001", internal_port: "9001", port_desc: "WebUI Port" }
- { external_port: "9000", internal_port: "9000", port_desc: "API Port" }
param_usage_include_env: true
param_env_vars:
- { env_var: "MINIO_ROOT_USER", env_value: "minioadmin", desc: "Specify the root username for MinIO" }
- { env_var: "MINIO_ROOT_PASSWORD", env_value: "minioadmin", desc: "Specify the root password for MinIO" }
# optional container parameters
opt_param_usage_include_env: false
# optional parameters
optional_block_1: false
optional_block_1_items: ""
# unraid template
unraid_category: "Backup: Cloud: Network:Other Productivity: Tools:"
# application setup block
app_setup_block_enabled: true
app_setup_block: |
The WebUI can be found at `http://your-ip:9001`. Login with the username and password specified in the `MINIO_ROOT_USER` and `MINIO_ROOT_PASSWORD` variables.
# changelog
changelogs:
- { date: "25.04.24:", desc: "rebase to alpine 3.19" }
- { date: "21.03.23:", desc: "Add service checks" }
- { date: "29.01.23:", desc: "Initial release." }