-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
119 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
{ | ||
"cosmos-installer": { | ||
"form": [ | ||
{ | ||
"name": "adminOnly", | ||
"label": "Do you want to make this service admin only?", | ||
"initialValue": false, | ||
"type": "checkbox" | ||
}, | ||
{ | ||
"name": "jellyfin", | ||
"name-container": "jellyfin-name", | ||
"label": "Where is your Jellyfin instance? (leave blank if none)", | ||
"type": "container" | ||
} | ||
] | ||
}, | ||
"minVersion": "0.10.3", | ||
"services": { | ||
"{ServiceName}-db": { | ||
"image": "postgres:15.2", | ||
"container_name": "{ServiceName}-db", | ||
"restart": "unless-stopped", | ||
"UID": 1000, | ||
"GID": 1000, | ||
"environment": [ | ||
"PUID=1000", | ||
"PGID=1000", | ||
"TZ=auto", | ||
"POSTGRES_DB=jfstat", | ||
"POSTGRES_USER=postgres", | ||
"POSTGRES_PASSWORD={Passwords.0}" | ||
], | ||
"labels": { | ||
"cosmos-force-network-secured": "true", | ||
"cosmos-auto-update": "true", | ||
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Jellystat/icon.png" | ||
}, | ||
"networks": { | ||
"{ServiceName}-databases": {} | ||
}, | ||
"volumes": [ | ||
{ | ||
"source": "{ServiceName}-postgres-data", | ||
"target": "/var/lib/postgresql/data", | ||
"type": "volume" | ||
} | ||
] | ||
}, | ||
"{ServiceName}": { | ||
"image": "cyfershepard/jellystat:latest", | ||
"container_name": "{ServiceName}", | ||
"restart": "unless-stopped", | ||
"environment": [ | ||
"TZ=auto", | ||
"POSTGRES_USER=postgres", | ||
"POSTGRES_PASSWORD={Passwords.0}", | ||
"POSTGRES_IP={ServiceName}-db", | ||
"POSTGRES_PORT=5432", | ||
"JWT_SECRET={Passwords.0}123456748" | ||
], | ||
"labels": { | ||
"cosmos-force-network-secured": "true", | ||
"cosmos-auto-update": "true", | ||
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Jellystat/icon.png" | ||
}, | ||
"networks": { | ||
"{ServiceName}-databases": {} | ||
}, | ||
"depends_on": [ | ||
"{ServiceName}-db" | ||
], | ||
"volumes": [ | ||
{ | ||
"source": "{ServiceName}-backup-data", | ||
"target": "/app/backend/backup-data", | ||
"type": "volume" | ||
} | ||
], | ||
"routes": [ | ||
{ | ||
"name": "{ServiceName}", | ||
"description": "Expose {ServiceName} to the web", | ||
"useHost": true, | ||
"target": "http://{ServiceName}:3000", | ||
"mode": "SERVAPP", | ||
"Timeout": 14400000, | ||
"ThrottlePerMinute": 12000, | ||
"BlockCommonBots": true, | ||
"SmartShield": { | ||
"Enabled": true | ||
}, | ||
"AuthEnabled": true | ||
{if Context.adminOnly} | ||
, | ||
"AuthAdmin": true | ||
{/if} | ||
} | ||
], | ||
"links": [ | ||
{if Context.jellyfin} | ||
"{Context.jellyfin-name}" | ||
{/if} | ||
] | ||
} | ||
}, | ||
"networks": { | ||
"{ServiceName}-databases": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Jellystat", | ||
"description": "Jellystat is a free and open source Statistics App for Jellyfin! (This project is still in development - expect some weirdness)", | ||
"longDescription": "<p>Think of Jellystat as a Jellyfin version of Tautulli for Plex</p>", | ||
"tags": ["media", "stats", "library", "open-source", "self-hosted", "web application", "jellyfin", "media content", "windows", "linux", "macos", "docker"], | ||
"repository": "https://github.com/CyferShepard/Jellystat", | ||
"image": "https://hub.docker.com/r/cyfershepard/jellystat", | ||
"supported_architectures": ["amd64", "arm64"] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.