1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 21:25:19 +02:00

Initial working!

This commit is contained in:
Sean Morley 2024-06-09 17:35:37 +00:00
parent 9ad8a4ba8e
commit 08c6708543
7 changed files with 481 additions and 11 deletions

17
minio/docker-compose.yml Normal file
View file

@ -0,0 +1,17 @@
version: "3.4"
services:
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: