infra/ansible/roles/services/templates/compose.yaml
shockrah b68d53b143
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 4s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 14s
Opting for an example minio setup over filebrowser
2025-04-16 21:00:39 -07:00

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"