-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongo.yml
37 lines (33 loc) · 901 Bytes
/
mongo.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
# Use root/example as user/password credentials
version: '3.1'
services:
redis:
image: redis:latest
container_name: redis
restart: always
environment:
- TZ=Asia/Shanghai
ports:
- 6379:6379
# 这里的命令用来给 redis 创建默认的密码,在 node 里面我们用 ioredis 这个包和 redis 进行连接
command:
- /bin/bash
- -c
- redis-server --appendonly yes --requirepass "B8T8mix88GcS"
mongo:
image: mongo
restart: always
ports:
- 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/