cal.pub0.org/apps/web/test/docker-compose.yml

16 lines
338 B
YAML
Raw Normal View History

# Set the version of docker compose to use
2023-08-15 00:42:10 +00:00
version: "3.9"
# The containers that compose the project
services:
db:
image: postgres:13
restart: always
container_name: integration-tests-prisma
ports:
2023-08-15 00:42:10 +00:00
- "5433:5432"
environment:
POSTGRES_USER: prisma
POSTGRES_PASSWORD: prisma
2023-08-15 00:42:10 +00:00
POSTGRES_DB: tests