12 lines
219 B
YAML
12 lines
219 B
YAML
|
version: "3.7"
|
||
|
|
||
|
services:
|
||
|
postgres:
|
||
|
image: postgres:13.3
|
||
|
environment:
|
||
|
- POSTGRES_USER=postgres
|
||
|
- POSTGRES_PASSWORD=postgres
|
||
|
- POSTGRES_DB=opentelemetry_oban_test
|
||
|
ports:
|
||
|
- 5432:5432
|