Add Scrypted (#1108)
* Add Scrypted * Update description.md * Update docker-compose.yml * Host Testing * Fix CI * Update to secure port * Update port and Version * Update docker-compose.yml * Remove Reverse Proxy, Like HA
This commit is contained in:
parent
381af81664
commit
cfc4911a23
|
@ -31,6 +31,7 @@ const networkExceptions = [
|
||||||
"plex",
|
"plex",
|
||||||
"zerotier",
|
"zerotier",
|
||||||
"gladys",
|
"gladys",
|
||||||
|
"scrypted",
|
||||||
];
|
];
|
||||||
const getAppConfigs = (): AppConfig[] => {
|
const getAppConfigs = (): AppConfig[] => {
|
||||||
const apps: AppConfig[] = [];
|
const apps: AppConfig[] = [];
|
||||||
|
|
23
apps/scrypted/config.json
Normal file
23
apps/scrypted/config.json
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"$schema": "../schema.json",
|
||||||
|
"name": "Scrypted",
|
||||||
|
"port": 10443,
|
||||||
|
"available": true,
|
||||||
|
"exposable": false,
|
||||||
|
"id": "scrypted",
|
||||||
|
"tipi_version": 1,
|
||||||
|
"version": "18-jammy-full.s6-v0.41.0",
|
||||||
|
"categories": ["security"],
|
||||||
|
"description": "Scrypted is a high performance home video integration and automation platform",
|
||||||
|
"short_desc": "High performance home video integration and automation platform",
|
||||||
|
"author": "Koush",
|
||||||
|
"source": "https://github.com/koush/scrypted",
|
||||||
|
"form_fields": [
|
||||||
|
{
|
||||||
|
"type": "random",
|
||||||
|
"label": "Scrypted Bearer Token",
|
||||||
|
"min": 32,
|
||||||
|
"env_variable": "SCRYPTED_BEARER_TOKEN"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
23
apps/scrypted/docker-compose.yml
Normal file
23
apps/scrypted/docker-compose.yml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
scrypted:
|
||||||
|
container_name: scrypted
|
||||||
|
image: koush/scrypted:18-jammy-full.s6-v0.41.0
|
||||||
|
volumes:
|
||||||
|
- ${APP_DATA_DIR}/data/scrypted/database:/server/volume
|
||||||
|
- ${ROOT_FOLDER_HOST}/media/data/NVR/scrypted:/nvr
|
||||||
|
environment:
|
||||||
|
- SCRYPTED_WEBHOOK_UPDATE_AUTHORIZATION=${SCRYPTED_BEARER_TOKEN}
|
||||||
|
#- SCRYPTED_WEBHOOK_UPDATE=${APP_PROTOCOL:-http}://${APP_DOMAIN}/v1/update
|
||||||
|
devices:
|
||||||
|
- /dev/bus/usb:/dev/bus/usb
|
||||||
|
- /dev/dri:/dev/dri
|
||||||
|
restart: unless-stopped
|
||||||
|
network_mode: host
|
||||||
|
logging:
|
||||||
|
driver: "json-file"
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "10"
|
||||||
|
|
23
apps/scrypted/metadata/description.md
Normal file
23
apps/scrypted/metadata/description.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# Install Info
|
||||||
|
|
||||||
|
When installing the NVR Plugin, you can set the NVR Storage path as `/nvr`. See below where that folder is mounted!
|
||||||
|
## Folder Info
|
||||||
|
|
||||||
|
| Root Folder | Container Folder |
|
||||||
|
|-------------------------------|------------------|
|
||||||
|
| /runtipi/app-data/nvr/data/scrypted/database | /server/volume |
|
||||||
|
| /runtipi/media/data/NVR/scrypted | /nvr |
|
||||||
|
|
||||||
|
# Scrypted
|
||||||
|
|
||||||
|
Scrypted is a high performance home video integration platform and NVR with smart detections. [Instant, low latency, streaming](https://streamable.com/xbxn7z) to HomeKit, Google Home, and Alexa. Supports most cameras. [Learn more](https://docs.scrypted.app).
|
||||||
|
|
||||||
|
[![](https://user-images.githubusercontent.com/73924/252752480-57e1d556-cd3d-4448-81f9-a6c51b6513de.png)](https://user-images.githubusercontent.com/73924/252752480-57e1d556-cd3d-4448-81f9-a6c51b6513de.png)
|
||||||
|
|
||||||
|
## Installation and Documentation
|
||||||
|
|
||||||
|
Installation and camera onboarding instructions can be found in the [docs](https://docs.scrypted.app).
|
||||||
|
|
||||||
|
## Community
|
||||||
|
|
||||||
|
Scrypted has active communities on [Discord](https://discord.gg/DcFzmBHYGq), [Reddit](https://reddit.com/r/scrypted), and [Github](https://github.com/koush/scrypted). Check them out if you have questions!
|
BIN
apps/scrypted/metadata/logo.jpg
Normal file
BIN
apps/scrypted/metadata/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 43 KiB |
Loading…
Reference in New Issue
Block a user