-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yaml
More file actions
54 lines (51 loc) · 1.64 KB
/
compose.yaml
File metadata and controls
54 lines (51 loc) · 1.64 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
# =============================================================================
# ATL — Root Docker Compose
# =============================================================================
# Orchestrates all services across the entire stack.
# Compose fragments are product-scoped under infra/{product}/
#
# Usage:
# docker compose up -d # Start all services
# docker compose --profile dev up # Start with dev services (Dozzle, etc.)
# =============================================================================
name: atl
include:
- infra/networks.yaml
- infra/cert-manager.yaml
- infra/chat/chat-irc.yaml
- infra/chat/chat-xmpp.yaml
- infra/chat/chat-bridge.yaml
- infra/chat/chat-lounge.yaml
- infra/chat/chat-obsidian.yaml
- infra/chat/chat-fluux.yaml
- infra/network/network.yaml
- infra/observability/observability.yaml
- infra/tools/tools-privatebin.yaml
- infra/tools/tools-cyberchef.yaml
- infra/tools/tools-convertx.yaml
- infra/tools/tools-searxng.yaml
- infra/tools/tools-it-tools.yaml
- infra/tools/tools-jsoncrack.yaml
- infra/tools/tools-stirling-pdf.yaml
- infra/tools/tools-hckrnws.yaml
- infra/tools/tools-alloy-agent.yaml
services:
dozzle:
image: amir20/dozzle:v8
container_name: dozzle
restart: unless-stopped
profiles: ["dev"]
ports:
- "${DOZZLE_PORT:-8082}:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
logging:
driver: json-file
options:
max-size: "${LOG_MAX_SIZE:-50m}"
max-file: "${LOG_MAX_FILES:-5}"
compress: "true"
environment:
- DOZZLE_FILTER=name=atl-*
networks:
- atl-chat