Skip to content

Commit

Permalink
Added minio to docker dev environment
Browse files Browse the repository at this point in the history
  • Loading branch information
gpkvt authored Dec 1, 2023
1 parent 951e008 commit eeafae1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,22 @@ services:
- "cluster.routing.allocation.disk.watermark.flood_stage=1gb"
ports:
- "127.0.0.1:9200:9200"

minio:
image: minio/minio
container_name: minio
ports:
- "127.0.0.1:9000:9000"
- "127.0.0.1:9001:9001"
volumes:
- minio-data:/data
environment:
MINIO_ROOT_USER: minio
MINIO_ROOT_PASSWORD: fragdenstaat_de
command: server --console-address ":9001" /data

volumes:
es-data: {}
es-logs: {}
pg-data: {}
minio-data: {}

0 comments on commit eeafae1

Please sign in to comment.