15 lines
343 B
YAML
15 lines
343 B
YAML
version: '3'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:15.2-alpine
|
|
container_name: postgres-dev
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
volumes:
|
|
- ./schema.sql:/docker-entrypoint-initdb.d/schema.sql
|
|
- ./data:/var/lib/postgresql/data
|
|
ports:
|
|
- 5432:5432 |