forked from OpenSlides/openslides-datastore-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdc.test.yml
35 lines (35 loc) · 747 Bytes
/
dc.test.yml
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
version: "3"
services:
datastore:
image: openslides-datastore-test
command:
[
"sleep",
"infinity",
]
volumes:
- ./datastore:/app/datastore
- ./tests:/app/tests
- ./cli:/app/cli
environment:
- OPENSLIDES_DEVELOPMENT=1
depends_on:
- postgres
- redis
networks:
- postgres
- redis
ports:
- "5679:5678"
postgres:
image: postgres:15
env_file: database.env
networks:
- postgres
redis:
image: redis:alpine
networks:
- redis
networks:
postgres:
redis: