mirror of
https://github.com/BradNut/TofuStack
synced 2025-09-08 17:40:26 +00:00
56 lines
No EOL
1.1 KiB
YAML
56 lines
No EOL
1.1 KiB
YAML
version: '3.8'
|
|
services:
|
|
postgres:
|
|
image: postgres:latest
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: postgres
|
|
ports:
|
|
- '5432:5432'
|
|
volumes:
|
|
- postgres_data:/data
|
|
redis:
|
|
image: redis:latest
|
|
ports:
|
|
- '6379:6379'
|
|
volumes:
|
|
- redis_data:/data
|
|
minio:
|
|
image: docker.io/bitnami/minio
|
|
ports:
|
|
- '9000:9000'
|
|
- '9001:9001'
|
|
networks:
|
|
- minionetwork
|
|
volumes:
|
|
- 'minio_data:/data'
|
|
environment:
|
|
- MINIO_ROOT_USER=user
|
|
- MINIO_ROOT_PASSWORD=password
|
|
- MINIO_DEFAULT_BUCKETS=dev
|
|
mailpit:
|
|
image: axllent/mailpit
|
|
container_name: mailpit
|
|
restart: unless-stopped
|
|
volumes:
|
|
- mailpit_data:/data
|
|
ports:
|
|
- 8025:8025
|
|
- 1025:1025
|
|
environment:
|
|
MP_MAX_MESSAGES: 5000
|
|
MP_DATABASE: /data/mailpit.db
|
|
MP_SMTP_AUTH_ACCEPT_ANY: 1
|
|
MP_SMTP_AUTH_ALLOW_INSECURE: 1
|
|
|
|
volumes:
|
|
postgres_data:
|
|
redis_data:
|
|
mailpit_data:
|
|
minio_data:
|
|
driver: local
|
|
|
|
networks:
|
|
minionetwork:
|
|
driver: bridge |