Files
arbeitszeitmessung/Docker/docker-compose.test.yml
Tom Tröger b614049d03
Some checks reported errors
arbeitszeitmessung/pipeline/head Something is wrong with the build of this commit
added tests for db and user
2025-08-13 15:50:11 +02:00

14 lines
295 B
YAML

name: arbeitszeitmessung-test
services:
db:
image: postgres:16
restart: unless-stopped
env_file:
- .env.test
environment:
PGDATA: /var/lib/postgresql/data/pg_data
volumes:
- ${POSTGRES_PATH}/initdb:/docker-entrypoint-initdb.d
ports:
- 5433:5432