Update docker-compose.yaml

This commit is contained in:
Carlos Ruiz Ballesteros 2024-04-08 17:04:51 +02:00 committed by GitHub
parent e9bdeff9b1
commit 94e7d535a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,6 +31,8 @@ services:
image: redis:7.2.4-alpine
container_name: redis
restart: unless-stopped
ports:
- 6379:6379
volumes:
- redis:/data
command: >
@ -45,6 +47,8 @@ services:
image: bitnami/minio:2024.3.15-debian-12-r0
container_name: minio
restart: unless-stopped
ports:
- 9000:9000
environment:
- MINIO_ROOT_USER=${MINIO_ACCESS_KEY:-}
- MINIO_ROOT_PASSWORD=${MINIO_SECRET_KEY:-}
@ -62,6 +66,8 @@ services:
image: bitnami/mongodb:7.0.6-debian-12-r0
container_name: mongo
restart: unless-stopped
ports:
- 27017:27017
volumes:
- mongo-data:/bitnami/mongodb
environment: