15 lines
316 B
YAML
15 lines
316 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16
|
|
container_name: postgres_db
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- ./db/postgres_vol:/var/lib/postgresql/data
|
|
- ./db/schema.sql:/docker-entrypoint-initdb.d/schema.sql
|
|
|
|
volumes:
|
|
postgres_data: |