move to root directory

This commit is contained in:
Osman Faruk Bayram 2025-04-28 16:40:32 +03:00
parent 74681d0be6
commit d4b75f60e6
20 changed files with 0 additions and 0 deletions

15
docker-compose.yaml Normal file
View file

@ -0,0 +1,15 @@
services:
database:
image: postgres:latest
container_name: manhan_db
environment:
POSTGRES_USER: manhan
POSTGRES_PASSWORD: manhan
POSTGRES_DB: manhan_db
ports:
- "5432:5432"
volumes:
- db_data:/var/lib/postgresql/data
volumes:
db_data: