15 lines
275 B
YAML
15 lines
275 B
YAML
version: '3'
|
|
services:
|
|
tasks-postgres:
|
|
image: docker.io/postgres:13
|
|
name: tasks-postgres
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
ports:
|
|
5432:5432
|
|
volumes:
|
|
- ../database/init:/docker-entrypoint-initdb.d
|
|
|
|
|