-
Notifications
You must be signed in to change notification settings - Fork 3
/
development.yml
43 lines (39 loc) · 974 Bytes
/
development.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
version: "3.4"
# Used to spin up the Queue and database services only
services:
rabbit:
image: rabbitmq:management
restart: always
ports:
- 5672:5672
- 15672:15672
environment:
RABBITMQ_DEFAULT_USER: DEV_USER
RABBITMQ_DEFAULT_PASS: CHANGE_ME
logging:
driver: local
mongo:
image: mongo
restart: always
ports:
- 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: DEV_USER
MONGO_INITDB_ROOT_PASSWORD: CHANGE_ME
MONGO_INITDB_DATABASE: mousetrap
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: DEV_USER
ME_CONFIG_MONGODB_ADMINPASSWORD: CHANGE_ME
ME_CONFIG_MONGODB_SERVER: mongo
ME_CONFIG_MONGODB_PORT: 27017
ME_CONFIG_BASICAUTH_USERNAME: DEV_USER
ME_CONFIG_BASICAUTH_PASSWORD: CHANGE_ME
depends_on:
- mongo
logging:
driver: local