-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev-env.yml
61 lines (55 loc) · 1.14 KB
/
dev-env.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: "3"
services:
redis:
image: redis:latest
command: redis-server --requirepass 12345
restart: always
ports:
- "6180:6379"
networks:
- pepechill
redis-commander:
image: rediscommander/redis-commander:latest
depends_on:
- redis
restart: always
ports:
- "8180:8081"
environment:
- REDIS_HOST=redis
- REDIS_PASSWORD=12345
- HTTP_USER=pepechill
- HTTP_PASSWORD=12345
networks:
- pepechill
mongo:
image: mongo:latest
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=12345
volumes:
- mongodata:/data/db
restart: always
ports:
- "27055:27017"
networks:
- pepechill
mongo-express:
image: mongo-express
depends_on:
- mongo
environment:
- ME_CONFIG_MONGODB_ADMINUSERNAME=root
- ME_CONFIG_MONGODB_ADMINPASSWORD=12345
- ME_CONFIG_BASICAUTH_USERNAME=pepechill
- ME_CONFIG_BASICAUTH_PASSWORD=12345
restart: always
ports:
- "8055:8081"
networks:
- pepechill
networks:
pepechill:
external: true
volumes:
mongodata: