-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.trinity.yml
More file actions
94 lines (88 loc) · 3 KB
/
docker-compose.trinity.yml
File metadata and controls
94 lines (88 loc) · 3 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# ═══════════════════════════════════════════════════════════════════
# CONSTITUTIONAL TRINITY - Part 1: Uptime Kuma + Dozzle
# Lightweight monitoring and log viewing
# ═══════════════════════════════════════════════════════════════════
version: '3.8'
services:
uptime-kuma:
image: louislam/uptime-kuma:latest
container_name: uptime_kuma
init: true
volumes:
- /opt/arifos/data/uptime-kuma:/app/data
ports:
- "3002:3001"
networks:
- arifos_core_network
labels:
- "traefik.enable=true"
- "traefik.http.routers.uptime-kuma.rule=Host(`status.arif-fazil.com`)"
- "traefik.http.routers.uptime-kuma.entrypoints=websecure"
- "traefik.http.routers.uptime-kuma.tls.certresolver=letsencrypt"
- "traefik.http.services.uptime-kuma.loadbalancer.server.port=3001"
deploy:
resources:
limits:
cpus: '0.2'
memory: 256M
reservations:
cpus: '0.05'
memory: 64M
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3001"]
interval: 30s
timeout: 10s
retries: 3
dozzle:
image: amir20/dozzle:latest
container_name: dozzle
init: true
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
ports:
- "8082:8080"
networks:
- arifos_core_network
labels:
- "traefik.enable=true"
- "traefik.http.routers.dozzle.rule=Host(`logs.arif-fazil.com`)"
- "traefik.http.routers.dozzle.entrypoints=websecure"
- "traefik.http.routers.dozzle.tls.certresolver=letsencrypt"
- "traefik.http.services.dozzle.loadbalancer.server.port=8080"
deploy:
resources:
limits:
cpus: '0.1'
memory: 128M
reservations:
cpus: '0.05'
memory: 32M
restart: unless-stopped
environment:
- DOZZLE_LEVEL=info
- DOZZLE_TAILSIZE=300
# ═══════════════════════════════════════════════════════════════════════
# VOLUMES & NETWORKS
# ═══════════════════════════════════════════════════════════════════════
volumes:
arifosmcp_secrets:
driver: local
arifosmcp_telemetry:
driver: local
arifosmcp_vault:
driver: local
arifosmcp_memory:
driver: local
arifos_grafana_data:
driver: local
arifos_grafana_datasources:
driver: local
arifos_grafana_dashboards:
driver: local
geox_data:
driver: local
networks:
arifos_core_network:
name: arifos_core_network
external: true