Add docker compose

This commit is contained in:
Krzysztof Płaczek
2025-06-11 19:26:21 +02:00
parent 607d910985
commit a44c06c4b2
3 changed files with 27 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/docker-compose.yaml
.idea

View File

@@ -0,0 +1,9 @@
Minio S3 config repo
=====
### Starting the project
```bash
cp docker-compose.yaml.dist docker-compose.yaml
docker compose up -d
```

16
docker-compose.yaml.dist Normal file
View File

@@ -0,0 +1,16 @@
volumes:
minio_data:
services:
minio:
image: quay.io/minio/minio
container_name: minio
ports:
- "9100:9000"
- "9101:9001"
environment:
MINIO_ROOT_USER: admin
MINIO_ROOT_PASSWORD: password
volumes:
- minio_data:/data
command: server /data --console-address ":9001"