Files
spring-cloud-stream/samples/spring-cloud-stream-schema-registry-integration/postgres.yml
2022-08-29 19:30:14 -05:00

15 lines
280 B
YAML

version: '3'
services:
postgres:
image: postgres:10
container_name: schema-registry-postgres
restart: always
environment:
POSTGRES_DB: registry
POSTGRES_USER: root
POSTGRES_PASSWORD: rootpw
expose:
- 5432
ports:
- 5432:5432