1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 13:15:18 +02:00

Docker with minio

This commit is contained in:
Sean Morley 2024-06-09 18:10:17 +00:00
parent 1c7939f2b8
commit 4ed9ebc456
4 changed files with 49 additions and 5 deletions

View file

@ -19,3 +19,17 @@ services:
POSTGRES_DB: adventurelog
ports:
- "5432:5432"
minio:
image: quay.io/minio/minio
command: server /data --console-address ":9001"
environment:
- MINIO_ROOT_USER=minioadmin
- MINIO_ROOT_PASSWORD=minioadmin
volumes:
- minio_data:/data
ports:
- "9000:9000"
- "9001:9001"
volumes:
minio_data: