Skip to content

Commit

Permalink
Merge pull request #44 from Serph91P/notifiarr
Browse files Browse the repository at this point in the history
feat(market): notifiarr
  • Loading branch information
azukaar authored Sep 30, 2023
2 parents ecd59d7 + 12c5cbd commit e354a9e
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 0 deletions.
82 changes: 82 additions & 0 deletions servapps/Notifiarr/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"cosmos-installer": {
"form": [
{
"name": "API_KEY",
"label": "Enter your Notifiarr API Key",
"initialValue": "",
"type": "text"
},
{
"name": "PLEX_TOKEN",
"label": "Enter your Plex token",
"initialValue": "",
"type": "text"
},
{
"name": "PLEX_URL",
"label": "Enter your Plex url or IP",
"initialValue": "25",
"type": "text"
}
]
},
"minVersion": "0.8.4",
"services": {
"{ServiceName}": {
"image": "golift/notifiarr:latest",
"container_name": "{ServiceName}",
"restart": "unless-stopped",
"environment": [
"TZ=auto",
"DN_API_KEY={Context.API_KEY}",
"DN_PLEX_TOKEN={Context.PLEX_TOKEN}",
"DN_PLEX_URL={Context.PLEX_URL}",
"DN_LOG_FILE=/config/app.log",
"DN_HTTP_LOG=/config/http.log"
],
"labels": {
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true",
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Notifiarr/icon.png"
},
"volumes": [
{
"source": "{ServiceName}-config",
"target": "/config",
"type": "volume"
},
{
"source": "/dev/sda",
"target": "/storage/1",
"type": "bind"
},
{
"source": "/var/run/utmp",
"target": "/var/run/utmp",
"type": "bind"
},
{
"source": "/etc/machine-id",
"target": "/etc/machine-id",
"type": "bind"
}
],
"routes": [
{
"name": "{ServiceName}",
"description": "Expose {ServiceName} to the web",
"useHost": true,
"target": "http://{ServiceName}:5454",
"mode": "SERVAPP",
"Timeout": 14400000,
"ThrottlePerMinute": 12000,
"BlockCommonBots": true,
"SmartShield": {
"Enabled": true
}
}
]
}
}
}
9 changes: 9 additions & 0 deletions servapps/Notifiarr/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "Mealie",
"longDescription": "<p>You just found one of the coolest tools on the Internet for a homelab enthusiast. We do notifications. We do them right. We've been doing then for years and we'll keep doing them for years to come. Notifiarr provides native custom integrations with dozens, maybe hundreds of applications and websites. That means these applications or websites can send data to Notifiarr, and we'll format a message according to your configuration then send it to your chat server.</p>",
"description": "You just found one of the coolest tools on the Internet for a homelab enthusiast. We do notifications.",
"tags": ["notifications", "rest api", "curl", "push notifications"],
"repository": "https://github.com/Notifiarr/notifiarr",
"image": "https://hub.docker.com/r/golift/notifiarr",
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/Notifiarr/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/Notifiarr/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.

0 comments on commit e354a9e

Please sign in to comment.