Tech4biz-channel/docker-compose.yml
2026-07-09 09:31:15 +05:30

19 lines
385 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
volumes:
postgres_data: