erp-platform/configs/deployment/docker-compose-data.yml
2025-05-08 10:17:50 +03:00

34 lines
584 B
YAML

# Platform Data Stack
name: kurs-platform-data
networks:
db:
external: false
volumes:
sql-pg:
services:
redis:
image: redis:6
ports:
- 6379:6379
volumes:
- ./configs/redis.conf:/redis.conf
command: ["redis-server", "/redis.conf"]
networks:
- db
restart: always
postgres:
image: postgres:17
ports:
- 5432:5432
volumes:
- sql-pg:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=NvQp8s@l
- POSTGRES_USER=sa
- POSTGRES_DB=postgres
networks:
- db
restart: always