Tech4biz-channel/docker-compose.yml
2026-07-09 17:33:28 +05:30

34 lines
741 B
YAML

version: '3.8'
services:
postgres:
image: postgres:15-alpine
container_name: channel_postgres
environment:
POSTGRES_USER: pipeline_admin
POSTGRES_PASSWORD: secure_pipeline_2024
POSTGRES_DB: backend_channel
ports:
- "5433:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
minio:
image: minio/minio:latest
container_name: channel_minio
ports:
- "9000:9000"
- "9090:9001"
environment:
MINIO_ROOT_USER: minio_admin
MINIO_ROOT_PASSWORD: minio_password_2026
volumes:
- minio_data:/data
command: server /data --console-address ":9001"
restart: unless-stopped
volumes:
postgres_data:
minio_data: