Added project

This commit is contained in:
2023-06-11 00:29:45 +03:00
parent 35971990e6
commit 27cf303639
56 changed files with 4125 additions and 24 deletions

15
docker/docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: '3.3'
services:
db:
build: ./db
container_name: postgres
volumes:
- ./db_data/:/var/lib/postgresql/data/
ports:
- "7654:5432"
restart: always
environment:
- POSTGRES_USER=test
- POSTGRES_PASSWORD=test
- POSTGRES_DB=test