19 lines
412 B
YAML
19 lines
412 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
db:
|
|
image: postgres:latest
|
|
volumes:
|
|
- ./docker/db-database:/var/lib/postgresql/data
|
|
- ./docker/entrypoint:/docker-entrypoint-initdb.d
|
|
environment:
|
|
POSTGRES_DB: schoolproject
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
ports:
|
|
- "5432:5432"
|
|
|
|
# backend:
|
|
# build:
|
|
# context: ./Backend
|
|
# dockerfile: Dockerfile
|