Some checks failed
Test Environment Setup / setup-test-environment (push) Has been cancelled
19 lines
404 B
YAML
19 lines
404 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
|