ci: add some configs

This commit is contained in:
Riccardo
2024-06-21 00:28:14 +02:00
parent 7e00093af1
commit fcbec72816
4 changed files with 60 additions and 3 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
services:
db:
image: postgres:16.3
container_name: postgres
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- "5432:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: