Skip to content

Commit

Permalink
Cachet open-source status page system support (#102)
Browse files Browse the repository at this point in the history
* Supports a variety of software

* Update tag

* Support jenkins and Tautulli

* Update N8n, actual and edit tag Drupal

* fix icon

* Cachet Full Support
  • Loading branch information
vncloudsco authored Nov 21, 2023
1 parent f0813ec commit 87a0660
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 0 deletions.
78 changes: 78 additions & 0 deletions servapps/Cachet/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"cosmos-installer": {},
"minVersion": "0.9.0",
"services": {
"{ServiceName}": {
"image": "vouu/cachet:latest",
"container_name": "{ServiceName}",
"restart": "unless-stopped",
"environment": [
"DB_DRIVER=pgsql",
"DB_PREFIX=chq_",
"APP_DEBUG=false",
"APP_KEY=base64:uXiAWUNdDid8XbziuGjnPc/cZYqkoTDbay1psO2S1+o=",
"APP_LOG=errorlog",
"APP_ENV=production",
"DB_HOST={ServiceName}-postgres",
"DB_PORT=5432",
"DB_USERNAME=cachethq",
"DB_DATABASE=cachethq",
"DB_PASSWORD={Passwords.0}"
],
"labels": {
"cosmos-persistent-env": "DB_PASSWORD, DB_DATABASE, DB_USERNAME, DB_PORT, DB_HOST",
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true",
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Cachet/icon.png"
},
"networks": {
"{ServiceName}-postgres": {}
},
"routes": [{
"name": "{ServiceName}",
"description": "Expose {ServiceName} to the web",
"useHost": true,
"target": "http://{ServiceName}:8000",
"mode": "SERVAPP",
"Timeout": 14400000,
"ThrottlePerMinute": 12000,
"BlockCommonBots": true,
"SmartShield": {
"Enabled": true
}
}]
},

"{ServiceName}-postgres": {
"image": "postgres:15-alpine",
"container_name": "{ServiceName}-postgres",
"hostname": "{ServiceName}-postgres",
"restart": "unless-stopped",
"networks": {
"{ServiceName}-postgres": {}
},
"stop_grace_period": 5,
"security_opt": [
"seccomp:unconfined",
"apparmor:unconfined"
],
"volumes": [{
"source": "{ServiceName}-postgres-data",
"target": "/var/lib/postgresql/data",
"type": "volume"
}],
"labels": {
"cosmos-persistent-env": "POSTGRES_DB, POSTGRES_USER, POSTGRES_PASSWORD"
},
"environment": [
"POSTGRES_DB=cachethq",
"POSTGRES_USER=cachethq",
"POSTGRES_PASSWORD={Passwords.0}"
]
}
},

"networks": {
"{ServiceName}-postgres": {}
}
}
9 changes: 9 additions & 0 deletions servapps/Cachet/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "Cachet",
"longDescription": "<p>Cachet is an open-source status page system designed to help you keep track of your system status and share it with your user base. It is built to be responsive and works seamlessly across different devices.</p>",
"description": "Cachet, the open-source status page system.",
"tags": ["technical", "administration", "server", "open-source", "self-hosted", "monitoring", "uptime", "service status", "notifications", "windows", "linux", "macos", "docker"],
"repository": "https://github.com/cachethq/cachet/",
"image": "https://hub.docker.com/r/vouu/cachet/",
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/Cachet/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Cachet/screenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Cachet/screenshots/2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 87a0660

Please sign in to comment.