You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
405 B
15 lines
405 B
services:
|
|
minio:
|
|
image: minio/minio
|
|
container_name: minio
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|
|
volumes:
|
|
- ~/storage/minio:/data
|
|
environment:
|
|
MINIO_ROOT_USER: lunchbox
|
|
MINIO_ROOT_PASSWORD: password
|
|
MINIO_BROWSER_REDIRECT_URL: https://console.redirect
|
|
MINIO_EXTERNAL_URL: https://api.end.point
|
|
command: server --console-address ":9001" /data |