-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
66 lines (66 loc) · 1.47 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
version: "3.8"
services:
postgres:
image: postgres:latest
container_name: postgres_db
ports:
- "6500:5432"
volumes:
- auth_postgres_db:/data
env_file:
- ./.env
minio:
container_name: minio
image: quay.io/minio/minio:latest
volumes:
- auth_mino_storage:/data
ports:
- "${FORWARD_MINIO_PORT:-9000}:9000"
- "${FORWARD_MINIO_CONSOLE_PORT:-9090}:9090"
environment:
MINIO_ROOT_USER: minio
MINIO_ROOT_PASSWORD: minio123
command: server /data --console-address ":9090"
redis_session:
image: redis:alpine
container_name: redis_session
ports:
- "6379:6379"
volumes:
- auth_redis_session_db:/data
redis_ratelimiter:
image: redis:alpine
container_name: redis_ratelimiter
ports:
- "6380:6379"
volumes:
- auth_redis_ratelimier_db:/data
redis_email:
image: redis:alpine
container_name: redis_email
ports:
- "6381:6379"
volumes:
- auth_redis_email_db:/data
redis_system:
image: redis:alpine
container_name: redis_system
ports:
- "6382:6379"
volumes:
- auth_redis_system:/data
redis_challenge:
image: redis:alpine
container_name: redis_challenge
ports:
- "6383:6379"
volumes:
- auth_redis_challenge:/data
volumes:
auth_postgres_db:
auth_redis_session_db:
auth_redis_ratelimier_db:
auth_redis_email_db:
auth_redis_system:
auth_redis_challenge:
auth_mino_storage: