forked from softvis-research/Getaviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.test.yml
45 lines (44 loc) · 995 Bytes
/
docker-compose.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
36
37
38
39
40
41
42
43
44
45
version: "3"
services:
frontend:
build: ui/
restart: always
volumes:
- data-gen:/var/www/html/ui/data-gen
networks:
- default
depends_on:
- backend
backend:
build: generator2/org.getaviz.generator/
restart: always
volumes:
- data-gen:/var/lib/jetty/data-gen
networks:
- default
depends_on:
- neo4j
tests:
build: integrationtests/
command: "/bin/wait-for-it.sh neo4j:7687 -s -t 30 -- mvn install"
networks:
- default
depends_on:
- neo4j
- frontend
- backend
neo4j:
image: neo4j:3.5.1
restart: always
ports:
- "7474:7474"
- "7687:7687"
environment:
NEO4J_AUTH: "none"
networks:
- default
volumes:
data-gen:
networks:
default:
driver: bridge