-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
64 lines (50 loc) · 1.33 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
version: '3.9'
services:
minio:
image: minio/minio:RELEASE.2024-06-29T01-20-47Z@sha256:fce0a90a37bb2887c850b68b61a0ac8ac02ea218b58eaea96bb7ca69eb503e20
hostname: minio
container_name: minio__minio
restart: unless-stopped
environment:
- MINIO_ROOT_USER=root
- MINIO_ROOT_PASSWORD=${MINIO_PASSWORD}
volumes:
- type: volume
source: minio_data
target: /export
- type: bind
source: /etc/timezone
target: /etc/timezone
read_only: true
- type: bind
source: /etc/localtime
target: /etc/localtime
read_only: true
command: server /export --address :9000 --console-address :9001
networks:
- default
deploy:
resources:
limits:
memory: 8192m
cloudflared:
image: cloudflare/cloudflared:2024.6.0@sha256:8245fa2eeeabf437b061909cd59f123b39730f626bc676dc37cd3fb9f6880580
hostname: cloudflared
container_name: minio__cloudflared
restart: unless-stopped
environment:
TUNNEL_METRICS: 0.0.0.0:9126
TUNNEL_LOGFILE: /dev/stdout
command: tunnel run --token ${TUNNEL_TOKEN}
networks:
default:
deploy:
resources:
limits:
memory: 4096m
volumes:
minio_data:
name: minio__minio_data
networks:
default:
name: minio__default