Skip to content

Commit 8149b41

Browse files
authored
Merge pull request #6 from AITestingOrg/feature/fixDockerCompose
Fixed Docker compose to follow the standard
2 parents 016ffdf + edc387d commit 8149b41

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

docker-compose-dev.yml renamed to docker-compose-local.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@ services:
88
- '27017:27017'
99
volumes:
1010
- 'mongo:/data/db'
11+
1112
rabbitmq:
1213
image: rabbitmq:management
1314
container_name: 'rabbitmq'
1415
ports:
1516
- "5672:5672"
1617
- "15672:15672"
18+
1719
driver-cmd:
18-
build: ../driver-cmd/
20+
image: aista/driver-cmd
1921
container_name: 'driver-cmd'
2022
environment:
2123
- RABBIT_HOST=rabbitmq

docker-compose.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ services:
77
- '27017:27017'
88
volumes:
99
- 'mongo:/data/db'
10+
1011
rabbitmq:
1112
image: rabbitmq:management
1213
ports:
1314
- "5672:5672"
1415
- "15672:15672"
16+
1517
driver-cmd:
16-
image: aista/driver-cmd/
18+
image: aista/driver-cmd
1719
container_name: 'driver-cmd'
1820
environment:
1921
- RABBIT_HOST=rabbitmq
@@ -26,7 +28,7 @@ services:
2628
- discoveryservice
2729

2830
driver-query:
29-
build: ./
31+
image: aista/driver-query
3032
container_name: 'driver-query'
3133
environment:
3234
- RABBIT_HOST=rabbitmq

0 commit comments

Comments
 (0)