-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
68 lines (62 loc) · 1.27 KB
/
docker-compose.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
62
63
64
65
66
67
68
version: '3'
services:
db:
container_name: pexp_db_1
restart: always
build:
context: docker/mongo/
dockerfile: Dockerfile
ports:
- 27017:27017
environment:
MONGODB_ROOT_PASSWORD: pexpD3V453R
MONGODB_USERNAME: pexpDevUser
MONGODB_PASSWORD: pexpD3V453R
MONGODB_DATABASE: pexpDev
volumes:
- data:/bitnami/mongodb
networks:
- pexpnet
mail:
container_name: pexp_mail_1
restart: always
image: mailhog/mailhog:latest
ports:
- 8025:8025
networks:
- pexpnet
minio:
container_name: pexp_minio_1
restart: always
image: minio/minio
ports:
- 9000:9000
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: 12345678
volumes:
- minio:/data
command: server /data
networks:
- pexpnet
redis:
image: bitnami/redis:latest
restart: always
container_name: pexp_redis_1
environment:
- REDIS_PASSWORD=ewsua132435 # Security reasons
- DISABLE_COMMANDS=FLUSHDB,FLUSHALL,CONFIG # Security reasons
ports:
- 6379:6379
volumes:
- data:/bitnami/redis/data
networks:
- pexpnet
networks:
pexpnet:
driver: "bridge"
volumes:
data:
driver: "local"
minio:
driver: "local"