-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
71 lines (65 loc) · 1.36 KB
/
docker-compose.yaml
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
69
70
71
volumes:
minio_data:
redis_data:
services:
# minio:
# image: quay.io/minio/minio:RELEASE.2023-03-24T21-41-23Z
# restart: always
# ports:
# - 9000:9000
# - 9001:9001
# environment:
# - MINIO_ROOT_USER=minio
# - MINIO_ROOT_PASSWORD=minio123
# - minio_data:/data
# volumes:
# command:
# - server
# - /data
# - --console-address
# - ":9001"
redis:
image: redis:7-alpine
restart: always
ports:
- 6379:6379
command: redis-server --save 60 1 --loglevel warning
profiles:
- redis
volumes:
- redis_data:/data
redis-commander:
container_name: redis-commander
image: ghcr.io/joeferner/redis-commander:latest
restart: always
environment:
REDIS_HOSTS: redis
ports:
- 8081:8081
profiles:
- redis
frps:
image: snowdreamtech/frps:0.48.0
container_name: frps
ports:
- 7400:7400
- 7500:7500
volumes:
- ./frps.ini:/etc/frp/frps.ini
network_mode: host
restart: always
frpc:
image: snowdreamtech/frpc:0.48.0
container_name: frpc
environment:
USER: testuser
ports:
- 7400:7400
- 7500:7500
depends_on:
- frps
volumes:
- ./frpc.ini:/etc/frp/frpc.ini
network_mode: host
restart: always
command: frpc -c /etc/frp/frpc.ini