19 lines
454 B
YAML
19 lines
454 B
YAML
---
|
|
version: "3.8"
|
|
services:
|
|
minio:
|
|
image: minio/minio:latest
|
|
container_name: minio
|
|
restart: unless-stopped
|
|
ports:
|
|
- 9000:9000 # MinIO API Port
|
|
- 9090:9090 # MinIO Console Port
|
|
environment:
|
|
- MINIO_ROOT_USER=admin
|
|
- MINIO_ROOT_PASSWORD=mysecretpassword
|
|
volumes:
|
|
- /srv/minio:/data
|
|
command: server --console-address ":9090" /data
|
|
labels:
|
|
- com.centurylinklabs.watchtower.enable=true
|