diff --git a/Apps/mycoolapp/app.json b/Apps/mycoolapp/app.json new file mode 100644 index 0000000..8857834 --- /dev/null +++ b/Apps/mycoolapp/app.json @@ -0,0 +1,15 @@ +{ + "title": "MyCoolApp", + "description": "A cool custom app", + "developer": "Me", + "image": "linuxserver/jellyfin:latest", + "ports": { + "8096/tcp": "8096" + }, + "volumes": { + "/config": "/mnt/data/jellyfin/config", + "/media": "/mnt/media" + }, + "web_ui": "http://[HOST_IP]:[PORT:8096]", + "icon": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jellyfin-icon.png" +} diff --git a/Apps/mycoolapp/icon.png b/Apps/mycoolapp/icon.png new file mode 100644 index 0000000..4ebd3d3 Binary files /dev/null and b/Apps/mycoolapp/icon.png differ diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..77b567e --- /dev/null +++ b/manifest.json @@ -0,0 +1,15 @@ +{ + "store": { + "name": "MyApps", + "apps": [ + { + "id": "mycoolapp", + "name": "MyCoolApp", + "description": "A cool app", + "icon": "./Apps/mycoolapp/icon.png", + "app_file": "./Apps/mycoolapp/app.json" + } + ] + } +} +