Create the Gotify service for the Tipi App Store
This commit is contained in:
parent
885c0fa176
commit
0af5959921
33
apps/gotify/config.json
Normal file
33
apps/gotify/config.json
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"$schema": "../schema.json",
|
||||
"name": "Gotify",
|
||||
"available": true,
|
||||
"port": 8129,
|
||||
"id": "gotify",
|
||||
"tipi_version": 2,
|
||||
"version": "2.1.7",
|
||||
"categories": ["utilities"],
|
||||
"description": "Simple server for sending and receiving notification messages.",
|
||||
"short_desc": "Gotify, a simple server for sending and receiving notification messages.",
|
||||
"author": "gotigy",
|
||||
"source": "https://github.com/gotify/server",
|
||||
"website": "https://gotify.net",
|
||||
"form_fields": [
|
||||
{
|
||||
"type": "text",
|
||||
"label": "Traefik Domain",
|
||||
"max": 50,
|
||||
"min": 3,
|
||||
"required": false,
|
||||
"env_variable": "TRAEFIK_GOTIFY"
|
||||
},
|
||||
{
|
||||
"type": "password",
|
||||
"label": "Password",
|
||||
"max": 50,
|
||||
"min": 3,
|
||||
"required": true,
|
||||
"env_variable": "GOTIFY_DEFAULTUSER_PASS"
|
||||
}
|
||||
]
|
||||
}
|
14
apps/gotify/docker-compose.yml
Normal file
14
apps/gotify/docker-compose.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
version: "3.7"
|
||||
services:
|
||||
gotify:
|
||||
image: gotify/server:2.1.7
|
||||
container_name: gotify
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- "${APP_DATA_DIR}/datagit :/app/data"
|
||||
environment:
|
||||
- GOTIFY_DEFAULTUSER_PASS=${GOTIFY_DEFAULTUSER_PASS}
|
||||
ports:
|
||||
- ${APP_PORT}:80
|
||||
networks:
|
||||
- tipi_main_network
|
10
apps/gotify/metadata/description.md
Normal file
10
apps/gotify/metadata/description.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Selfhosted notification service
|
||||
|
||||
We wanted a simple server for sending and receiving messages (in real time per WebSocket). For this, not many open source projects existed and most of the existing ones were abandoned. Also, a requirement was that it can be self-hosted. We know there are many free and commercial push services out there.
|
||||
|
||||
At the heart of this project. (gotify/server)[https://hub.docker.com/r/gotify/server] features a WebUI and functionality for:
|
||||
|
||||
- sending messages via a REST-API
|
||||
- subscribing/receiving messages via a web socket connection
|
||||
- managing users, clients and applications
|
||||
|
BIN
apps/gotify/metadata/logo.jpg
Normal file
BIN
apps/gotify/metadata/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
Loading…
Reference in New Issue
Block a user