forked from neamm/auto.fun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.services.yml
More file actions
44 lines (40 loc) · 970 Bytes
/
docker-compose.services.yml
File metadata and controls
44 lines (40 loc) · 970 Bytes
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
version: "3.8"
services:
postgres:
image: postgres:latest
container_name: autofun-postgres
environment:
POSTGRES_USER: autofun_owner
POSTGRES_PASSWORD: npg_2PDZgJfEtrh6
POSTGRES_DB: autofun
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
redis:
image: redis:latest
container_name: autofun-redis
command: redis-server --requirepass MDikUKnhRHlURlnORexvVztDTrNCUBze
ports:
- "6379:6379"
volumes:
- redis_data:/data
restart: unless-stopped
minio:
image: minio/minio:latest
container_name: autofun-minio
environment:
MINIO_ROOT_USER: minio_user
MINIO_ROOT_PASSWORD: minio_password
ports:
- "9000:9000"
- "9001:9001"
volumes:
- minio_data:/data
command: server /data --console-address ":9001"
restart: unless-stopped
volumes:
postgres_data:
redis_data:
minio_data: