mirror of
https://github.com/wahyd4/spring-cloud-stream-samples.git
synced 2026-08-09 05:16:18 +10:00
15 lines
280 B
YAML
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
|