-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.test.yml
More file actions
37 lines (33 loc) · 952 Bytes
/
docker-compose.test.yml
File metadata and controls
37 lines (33 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: otomad-database-api-test
version: "3.9"
services:
postgres:
image: postgres:15@sha256:ea40a028dd42740d6cff34135ff6b3119ff7ce0ed60120d992216456b5987fe7
ports:
- target: 5432
published: 35432
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: pass
POSTGRES_DB: test
# postgres-migration:
# build:
# context: ./.
# dockerfile: Dockerfile.migration
# depends_on:
# postgres:
# condition: service_healthy
# environment:
# PRISMA_DATABASE_URL: "postgres://user:pass@postgres:5432/test"
neo4j:
image: neo4j:5.15@sha256:d9e2fb1ba398536e50d22ebc3d5d585baa086c1c0cf8e5b96bdc9e11e87e002a
ports:
- target: 7687
published: 37687
environment:
NEO4J_AUTH: neo4j/password
redis:
image: redis:7.2@sha256:66b2c641a6e16eeb188b64816f915a6313f15850d5dbea7c29736f59f9e5146c
ports:
- target: 6379
published: 36379