-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.support.yml
40 lines (37 loc) · 970 Bytes
/
docker-compose.support.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
# This hosts both APIs locally in parallel
# It mounts the codebase within the container and runs the APIs
# with hot reload enabled.
version: "3.8"
services:
messagequeue:
image: rabbitmq:3.8.16-management-alpine
container_name: "electionguard-message-queue"
expose:
- 5672
- 15672
ports:
- 5672:5672
- 15672:15672
mongo:
image: mongo
container_name: "electionguard-db"
restart: always
ports:
- 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
MONGO_INITDB_DATABASE: BallotData
volumes:
- ./mongo-init.js:/docker-entrypoint-initdb.d/mongo-init.js:ro
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_SERVER: electionguard-db
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
links:
- mongo