All checks were successful
Gitea Actions Demo / build (push) Successful in 5m20s
31 lines
536 B
YAML
31 lines
536 B
YAML
version: '3'
|
|
services:
|
|
minio:
|
|
image: bitnami/minio
|
|
networks:
|
|
- db_net
|
|
ports:
|
|
- 9000:9000
|
|
- 9001:9001
|
|
volumes:
|
|
- ./data/minio:/bitnami/minio/data
|
|
environment:
|
|
- MINIO_ROOT_USER=localminio
|
|
- MINIO_ROOT_PASSWORD=localminio
|
|
- MINIO_DEFAULT_BUCKETS=devbucket
|
|
env_file:
|
|
- .env
|
|
redis:
|
|
image: redis
|
|
networks:
|
|
- db_net
|
|
ports:
|
|
- 6379:6379
|
|
command: >
|
|
--requirepass ${REDIS_PASS}
|
|
env_file:
|
|
- .env
|
|
networks:
|
|
app_net:
|
|
db_net:
|