feat: base code

This commit is contained in:
2024-11-23 23:48:25 +01:00
parent 7d962abaaa
commit 13b5beeb7e
22 changed files with 5294 additions and 1 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: "3.8"
services:
postgres:
container_name: personadb
image: postgres:15
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: persona
ports:
- "5433:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: