feat(testing): add a script for Tycho integration testing

This commit is contained in:
Florian Pellissier
2024-05-16 09:42:28 +02:00
parent 226ec98cf8
commit 8cc526527e
8 changed files with 490 additions and 2 deletions

15
docker-compose.yaml Normal file
View File

@@ -0,0 +1,15 @@
version: '3.1'
services:
db:
image: ghcr.io/dbsystel/postgresql-partman:15-5
restart: "always"
environment:
POSTGRESQL_PASSWORD: mypassword
POSTGRESQL_DATABASE: tycho_indexer_0
POSTGRESQL_USERNAME: postgres
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: