20 lines
429 B
YAML
20 lines
429 B
YAML
services:
|
|
health:
|
|
container_name: health
|
|
image: nginx:latest
|
|
restart: always
|
|
ports:
|
|
- "{{ health_port }}:80"
|
|
minio:
|
|
container_name: minio
|
|
image: quay.io/minio/minio
|
|
command: server /data --console-address ":9001"
|
|
volumes:
|
|
- "/opt/minio/data:/data"
|
|
environment:
|
|
MINIO_ROOT_USER: admin
|
|
MINIO_ROOT_PASSWORD: admin123
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|