configuration/docker-compose.ci.tools.yml

27 lines
521 B
YAML

version: '3.8'
services:
v3-configuration-db-test:
container_name: v3-configuration-db-test
image: ${POSTGRES_IMAGE}
environment:
POSTGRES_DB: configuration
POSTGRES_USER: configuration
POSTGRES_PASSWORD: configuration
ports:
- 5603:5432
networks:
- v3-network
v3-configuration-broker:
container_name: v3-configuration-broker
image: ${BROKER_IMAGE}
ports:
- 5672:5672
networks:
- v3-network
networks:
v3-network:
name: v3-network