This repository was archived by the owner on Feb 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdokploy.json
More file actions
70 lines (70 loc) · 1.38 KB
/
dokploy.json
File metadata and controls
70 lines (70 loc) · 1.38 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
{
"name": "happy-assistant",
"description": "Happy Voice Assistant for Claude Code",
"type": "docker-compose",
"compose": {
"file": "docker-compose.yml",
"service": "happy-web-custom"
},
"source": {
"type": "github",
"repository": "https://github.com/LymanBE/happy-fork-deployment",
"branch": "main",
"auto_deploy": true
},
"environment": {
"production": {
"EXPO_PUBLIC_HAPPY_SERVER_URL": "https://api.cluster-fluster.com",
"NODE_ENV": "production"
}
},
"domains": [
{
"host": "happy.100.119.254.98.nip.io",
"port": 8082,
"https": false
}
],
"volumes": {
"persistent": [
"../files/happy-data:/app/data",
"../files/agent-configs:/app/agent_configs"
]
},
"healthcheck": {
"enabled": true,
"path": "/",
"interval": 30,
"timeout": 10,
"retries": 3
},
"resources": {
"limits": {
"memory": "1GB",
"cpu": "1.0"
},
"reservations": {
"memory": "256MB",
"cpu": "0.25"
}
},
"deploy": {
"restart_policy": "unless-stopped",
"replicas": 1
},
"webhooks": {
"github": {
"enabled": true,
"secret": "${GITHUB_WEBHOOK_SECRET}",
"events": ["push", "pull_request"]
}
},
"monitoring": {
"enabled": true,
"metrics": true,
"logs": {
"retention": "7d",
"max_size": "100M"
}
}
}