14 lines
279 B
YAML
14 lines
279 B
YAML
version: '3'
|
|
|
|
services:
|
|
dev-db:
|
|
image: postgres:15
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: postgres
|
|
ports:
|
|
- 12345:5432
|
|
volumes:
|
|
- /tmp/rave-dev-db:/var/lib/postgresql/data
|