mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
* ♻️ Refacto minio template - add random password generation - forward port 9000 and expose 9001 through traefik - add some comments to add some volume setting info * 🔧 Remove domain config for port 9000 - 🐛 Fix redirection loop by adding MINIO_BROWSER_REDIRECT=false
18 lines
334 B
TOML
18 lines
334 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
api_domain = "${domain}"
|
|
|
|
[config]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "minio"
|
|
port = 9_001
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
MINIO_ROOT_USER = "minioadmin"
|
|
MINIO_ROOT_PASSWORD = "${password:16}"
|
|
MINIO_BROWSER_REDIRECT_URL = "http://${main_domain}"
|
|
MINIO_BROWSER_REDIRECT = "false"
|