11 lines
203 B
YAML
11 lines
203 B
YAML
version: '3.4'
|
|
|
|
services:
|
|
postgres-testing:
|
|
image: postgres
|
|
environment:
|
|
POSTGRES_DB: test_db
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
ports:
|
|
- 5433:5432 |