-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-test-env.yml
More file actions
56 lines (55 loc) · 1.22 KB
/
docker-compose-test-env.yml
File metadata and controls
56 lines (55 loc) · 1.22 KB
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
46
47
48
49
50
51
52
53
54
55
56
version: '3'
services:
rebusadmin:
build:
context: .
dockerfile: RebusAdmin/Dockerfile
ports:
- "5003:5003"
expose:
- "5003"
links:
- neo4j
- rebusneo
rebusneo:
build:
context: .
dockerfile: RebusNeo/Dockerfile
ports:
- "5002:5002"
expose:
- "5002"
links:
- "rebuscore"
- "ms-sql-server"
rebuscore:
build:
context: .
dockerfile: RebusCore/Dockerfile
ports:
- "5001:5001"
expose:
- "5001"
links:
- neo4j
neo4j:
environment:
- NEO4J_AUTH=neo4j/123
build:
context: .
dockerfile: Neo4J/Dockerfile
ports:
- "7474:7474"
- "7687:7687"
expose:
- "7687"
ms-sql-server:
image: mcr.microsoft.com/mssql/server:2017-latest-ubuntu
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "ABC123abc"
MSSQL_PID: "Express"
ports:
- "1433:1433"
expose:
- "1433"