-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-test.yml
More file actions
39 lines (34 loc) · 875 Bytes
/
docker-compose-test.yml
File metadata and controls
39 lines (34 loc) · 875 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
38
39
version: "3.8"
services:
test_runner:
container_name: "test_runner"
build:
context: .
dockerfile: ./testrunner.Dockerfile
tty: true
restart: on-failure
volumes:
- ./app:/home/dimsuser/app
- ./test:/home/dimsuser/test
test_mongodb:
container_name: "test_mongodb"
image: "mongo:4.0.28"
restart: on-failure
volumes:
- ./mongodb/mongo-init.js:/docker-entrypoint-initdb.d/mongo-init.js:ro
test_activemq_integration:
container_name: "test_activemq_integration"
build:
context: .
dockerfile: ./activemq/activemq.Dockerfile
restart: on-failure
ports:
- "8162:8161"
test_activemq_functional:
container_name: "test_activemq_functional"
build:
context: .
dockerfile: ./activemq/activemq.Dockerfile
restart: on-failure
ports:
- "8163:8161"