Added missing files and removed unnessesary ones

This commit is contained in:
2023-07-16 16:44:42 +03:00
parent c3fa5367c3
commit 199dd693e4
41 changed files with 1442 additions and 50 deletions

12
SQL/compose.yaml Normal file
View File

@ -0,0 +1,12 @@
services:
db:
image: postgres
environment:
- POSTGRES_USER=tester
- POSTGRES_PASSWORD=example123!
- POSTGRES_DB=testing
ports:
- 5432:5432/tcp
volumes:
- ./data:/var/lib/postgresql/data
restart: always