update docker-compose files with specific version and architectures (#22)

Signed-off-by: Tiger Wang <tigerwang@outlook.com>
This commit is contained in:
Tiger Wang 2023-03-06 19:52:47 -05:00 committed by GitHub
parent 491a32eeb0
commit fa69aa7c58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
91 changed files with 2958 additions and 2536 deletions

View File

@ -66,7 +66,7 @@
}, },
"restart_policy": "always", "restart_policy": "always",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -1,49 +1,54 @@
name: 2fauth name: 2fauth
services: services:
2fauth: 2fauth:
image: 2fauth/2fauth:latest image: 2fauth/2fauth:3.4.2
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports:
- target: 8000
published: "8000"
protocol: tcp
restart: always
volumes:
- type: bind
source: /DATA/AppData/$AppID
target: /2fauth
x-casaos:
author: CasaOS Team
category: Utilities
container:
index: /
port_map: "8000"
ports: ports:
- target: 8000 - configurable: "no"
published: "8000" container: "8000"
protocol: tcp
restart: always
volumes:
- type: bind
source: /DATA/AppData/$AppID
target: /2fauth
x-casaos:
author: CasaOS Team
category: Utilities
container:
index: /
port_map: "8000"
ports:
- configurable: "no"
container: "8000"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /2fauth
description:
en_US: ""
description: description:
en_US: 2FAuth is a web based self-hosted alternative to One Time Passcode (OTP) generators like Google Authenticator, designed for both mobile and desktop. en_US: ""
developer: Bubka protocol: tcp
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/icon.png shell: sh
screenshot_link: volumes:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/screenshot-1.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/screenshot-2.png container: /2fauth
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/screenshot-3.png description:
tagline: en_US: ""
en_US: A web app to manage your Two-Factor Authentication (2FA) accounts and generate their security codes description:
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/thumbnail.png en_US: 2FAuth is a web based self-hosted alternative to One Time Passcode (OTP) generators like Google Authenticator, designed for both mobile and desktop.
tips: {} developer: Bubka
title: icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/icon.png
en_US: 2FAuth screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/screenshot-3.png
tagline:
en_US: A web app to manage your Two-Factor Authentication (2FA) accounts and generate their security codes
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/thumbnail.png
tips: {}
title:
en_US: 2FAuth
x-casaos: x-casaos:
main_app: 2fauth architectures:
- amd64
- "386"
- arm64
- arm
main_app: 2fauth

View File

@ -106,7 +106,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -85,4 +85,10 @@ services:
title: title:
en_US: AdGuard Home en_US: AdGuard Home
x-casaos: x-casaos:
architectures:
- "386"
- amd64
- arm
- arm64
- ppc64le
main_app: adguard-home main_app: adguard-home

View File

@ -57,7 +57,7 @@
}, },
"restart_policy": "always", "restart_policy": "always",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -37,4 +37,6 @@ services:
title: title:
en_US: AllTube Download en_US: AllTube Download
x-casaos: x-casaos:
architectures:
- amd64
main_app: alltube-download main_app: alltube-download

View File

@ -102,7 +102,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Bazarr", "host_name": "Bazarr",
"cmd": [] "cmd": []

View File

@ -1,80 +1,84 @@
name: bazarr name: bazarr
services: services:
bazarr: bazarr:
environment: environment:
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/bazarr:latest image: linuxserver/bazarr:1.2.0
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 6767 - target: 6767
published: "6767" published: "6767"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/Media/Movies source: /DATA/Media/Movies
target: /movies target: /movies
- type: bind - type: bind
source: /DATA/Media/TV Shows source: /DATA/Media/TV Shows
target: /tv target: /tv
- type: bind - type: bind
source: /DATA/AppData/bazarr/config source: /DATA/AppData/bazarr/config
target: /config target: /config
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
port_map: "6767"
ports:
- configurable: "no"
container: "6767"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /movies
description:
en_US: ""
- configurable: "no"
container: /tv
description:
en_US: ""
- configurable: "no"
container: /config
description:
en_US: ""
description: description:
en_US: Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you. en_US: ""
developer: Sabnzbd Team - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/screenshot-3.png container: TZ
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/screenshot-4.png description:
tagline: en_US: ""
en_US: Letter generators for Sonarr and Radarr port_map: "6767"
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/2FAuth/thumbnail.png ports:
tips: {} - configurable: "no"
title: container: "6767"
en_US: Bazarr description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /movies
description:
en_US: ""
- configurable: "no"
container: /tv
description:
en_US: ""
- configurable: "no"
container: /config
description:
en_US: ""
description:
en_US: Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.
developer: Sabnzbd Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/screenshot-3.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/screenshot-4.png
tagline:
en_US: Letter generators for Sonarr and Radarr
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Bazarr/thumbnail.png
tips: {}
title:
en_US: Bazarr
x-casaos: x-casaos:
main_app: bazarr architectures:
- amd64
- arm
- arm64
main_app: bazarr

View File

@ -99,7 +99,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -1,85 +1,89 @@
name: calibre-web name: calibre-web
services: services:
calibre-web: calibre-web:
environment: environment:
DOCKER_MODS: linuxserver/calibre-web:calibre DOCKER_MODS: linuxserver/calibre-web:calibre
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/calibre-web:nightly-version-c0675497 image: linuxserver/calibre-web:0.6.19
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8083 - target: 8083
published: "8083" published: "8083"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Media/Books source: /DATA/Media/Books
target: /books target: /books
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
- configurable: "no"
container: DOCKER_MODS
description:
en_US: ""
index: /
port_map: "8083"
ports:
- configurable: "no"
container: "8083"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /books
description:
en_US: ""
description: description:
en_US: Calibre-web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. It is also possible to integrate google drive and edit metadata and your calibre library through the app itself. en_US: ""
developer: linuxserver - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Calibre-web/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Calibre-web/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Calibre-web/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Calibre-web/screenshot-3.png container: TZ
tagline: description:
en_US: Web app for browsing, reading and downloading eBooks stored in a Calibre database en_US: ""
thumbnail: ' https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Calibre-web/thumbnail.png' - configurable: "no"
tips: container: DOCKER_MODS
before_install: description:
- content: en_US: ""
en_US: UserName index: /
value: admin port_map: "8083"
- content: ports:
en_US: Password - configurable: "no"
value: admin123 container: "8083"
title: description:
en_US: Calibre-web en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /books
description:
en_US: ""
description:
en_US: Calibre-web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. It is also possible to integrate google drive and edit metadata and your calibre library through the app itself.
developer: linuxserver
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Calibre-web/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Calibre-web/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Calibre-web/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Calibre-web/screenshot-3.png
tagline:
en_US: Web app for browsing, reading and downloading eBooks stored in a Calibre database
thumbnail: ' https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Calibre-web/thumbnail.png'
tips:
before_install:
- content:
en_US: UserName
value: admin
- content:
en_US: Password
value: admin123
title:
en_US: Calibre-web
x-casaos: x-casaos:
main_app: calibre-web architectures:
- amd64
- arm
- arm64
main_app: calibre-web

View File

@ -103,7 +103,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,82 +1,86 @@
name: couchpotato name: couchpotato
services: services:
couchpotato: couchpotato:
environment: environment:
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: $TZ TZ: $TZ
image: linuxserver/couchpotato image: linuxserver/couchpotato:version-7260c12f
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 5050 - target: 5050
published: "5050" published: "5050"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Media/Movies source: /DATA/Media/Movies
target: /movies target: /movies
- type: bind - type: bind
source: /DATA/Downloads source: /DATA/Downloads
target: /downloads target: /downloads
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "yes" - configurable: "yes"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: "yes"
container: PUID
description:
en_US: Run CouchPotato as specified uid.
- configurable: "yes"
container: PGID
description:
en_US: Run CouchPotato as specified gid.
index: /
port_map: "5050"
ports:
- configurable: advanced
container: "5050"
description:
en_US: WebUI HTTP Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: CouchPotato config directory.
- configurable: advanced
container: /movies
description:
en_US: CouchPotato movies directory.
- configurable: advanced
container: /downloads
description:
en_US: CouchPotato downloads directory.
description: description:
en_US: Awesome PVR for usenet and torrents. Just fill in what you want to see and CouchPotato will add it to your want to watch-list. Every day it will search through multiple sources, looking for the best possible match. If available, it will send it using your favorite download software. en_US: TimeZone
developer: CouchPotato - configurable: "yes"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/icon.png container: PUID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/screenshot-1.jpg en_US: Run CouchPotato as specified uid.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/screenshot-2.jpg - configurable: "yes"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/screenshot-3.jpg container: PGID
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/screenshot-4.jpg description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/screenshot-5.jpg en_US: Run CouchPotato as specified gid.
tagline: index: /
en_US: Automatically find movies you want to watch port_map: "5050"
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/thumbnail.jpg ports:
tips: {} - configurable: advanced
title: container: "5050"
en_US: CouchPotato description:
en_US: WebUI HTTP Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: CouchPotato config directory.
- configurable: advanced
container: /movies
description:
en_US: CouchPotato movies directory.
- configurable: advanced
container: /downloads
description:
en_US: CouchPotato downloads directory.
description:
en_US: Awesome PVR for usenet and torrents. Just fill in what you want to see and CouchPotato will add it to your want to watch-list. Every day it will search through multiple sources, looking for the best possible match. If available, it will send it using your favorite download software.
developer: CouchPotato
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/screenshot-3.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/screenshot-4.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/screenshot-5.jpg
tagline:
en_US: Automatically find movies you want to watch
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/CouchPotato/thumbnail.jpg
tips: {}
title:
en_US: CouchPotato
x-casaos: x-casaos:
main_app: couchpotato architectures:
- amd64
- arm
- arm64
main_app: couchpotato

View File

@ -116,7 +116,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,116 +1,120 @@
name: deluge name: deluge
services: services:
deluge: deluge:
environment: environment:
DELUGE_LOGLEVEL: error DELUGE_LOGLEVEL: error
PGID: $PGID PGID: $PGID
PUID: $PUID PUID: $PUID
TZ: $TZ TZ: $TZ
image: linuxserver/deluge:latest image: linuxserver/deluge:2.1.1
mem_reservation: "268435456" mem_reservation: "268435456"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8112 - target: 8112
published: "8112" published: "8112"
protocol: tcp protocol: tcp
- target: 6881 - target: 6881
published: "6881" published: "6881"
protocol: tcp protocol: tcp
- target: 6881 - target: 6881
published: "6881" published: "6881"
protocol: udp protocol: udp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
- type: bind - type: bind
source: /DATA source: /DATA
target: /DATA target: /DATA
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Downloader category: Downloader
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: "no"
container: PUID
description:
en_US: Run Deluge as specified uid.
- configurable: "no"
container: PGID
description:
en_US: Run Deluge as specified gid.
- configurable: "no"
container: DELUGE_LOGLEVEL
description:
en_US: 'Deluge Log Level '
index: /
port_map: "8112"
ports:
- configurable: advanced
container: "8112"
description:
en_US: WebUI HTTP Port
protocol: tcp
- configurable: advanced
container: "6881"
description:
en_US: Inbound torrent traffic (TCP)
protocol: tcp
- configurable: advanced
container: "6881"
description:
en_US: Inbound torrent traffic (UDP)
protocol: udp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: Deluge config directory.
- configurable: advanced
container: /DATA
description:
en_US: Deluge Accessible directory.
description: description:
en_US: Deluge contains the common features to BitTorrent clients such as Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange (PEX), UPnP, NAT-PMP, Proxy support, Web seeds, global and per-torrent speed limits. As Deluge heavily utilises the libtorrent library it has a comprehensive list of the features provided. en_US: TimeZone
developer: Deluge Team - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/icon.png container: PUID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/screenshot-1.jpg en_US: Run Deluge as specified uid.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/screenshot-2.jpg - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/screenshot-3.jpg container: PGID
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/screenshot-4.jpg description:
tagline: en_US: Run Deluge as specified gid.
en_US: A lightweight and free BitTorrent client. - configurable: "no"
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/thumbnail.jpg container: DELUGE_LOGLEVEL
tips: description:
before_install: en_US: 'Deluge Log Level '
- content: index: /
en_US: 'Default Password: ' port_map: "8112"
value: deluge ports:
- content: - configurable: advanced
en_US: "" container: "8112"
- content: description:
en_US: Default Accessible Path in Deluge en_US: WebUI HTTP Port
- content: protocol: tcp
en_US: 'DATA Path: ' - configurable: advanced
value: /DATA container: "6881"
- content: description:
en_US: 'Downloads Path: ' en_US: Inbound torrent traffic (TCP)
value: /DATA/Downloads protocol: tcp
- content: - configurable: advanced
en_US: 'Media Path: ' container: "6881"
value: /DATA/Media description:
- content: en_US: Inbound torrent traffic (UDP)
en_US: The paths of other DATA subdirectories in CasaOS are also similar. protocol: udp
- content: shell: bash
en_US: Please make sure you use the correct path when using Deluge. volumes:
title: - configurable: "no"
en_US: Deluge container: /config
description:
en_US: Deluge config directory.
- configurable: advanced
container: /DATA
description:
en_US: Deluge Accessible directory.
description:
en_US: Deluge contains the common features to BitTorrent clients such as Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange (PEX), UPnP, NAT-PMP, Proxy support, Web seeds, global and per-torrent speed limits. As Deluge heavily utilises the libtorrent library it has a comprehensive list of the features provided.
developer: Deluge Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/screenshot-3.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/screenshot-4.jpg
tagline:
en_US: A lightweight and free BitTorrent client.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Deluge/thumbnail.jpg
tips:
before_install:
- content:
en_US: 'Default Password: '
value: deluge
- content:
en_US: ""
- content:
en_US: Default Accessible Path in Deluge
- content:
en_US: 'DATA Path: '
value: /DATA
- content:
en_US: 'Downloads Path: '
value: /DATA/Downloads
- content:
en_US: 'Media Path: '
value: /DATA/Media
- content:
en_US: The paths of other DATA subdirectories in CasaOS are also similar.
- content:
en_US: Please make sure you use the correct path when using Deluge.
title:
en_US: Deluge
x-casaos: x-casaos:
main_app: deluge architectures:
- amd64
- arm
- arm64
main_app: deluge

View File

@ -101,7 +101,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -1,80 +1,83 @@
name: duplicati name: duplicati
services: services:
duplicati: duplicati:
environment: environment:
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/duplicati:latest image: linuxserver/duplicati:2.0.6
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8200 - target: 8200
published: "8200" published: "8200"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Duplicati/backups source: /DATA/Duplicati/backups
target: /backups target: /backups
- type: bind - type: bind
source: /DATA/Duplicati/source source: /DATA/Duplicati/source
target: /source target: /source
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Cloud category: Cloud
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
index: /
port_map: "8200"
ports:
- configurable: "no"
container: "8200"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /backups
description:
en_US: ""
- configurable: "no"
container: /source
description:
en_US: ""
description: description:
en_US: Duplicati is a free, open source, backup client that securely stores encrypted, incremental, compressed backups on cloud storage services and remote file servers. en_US: ""
developer: duplicati - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Duplicati/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Duplicati/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Duplicati/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Duplicati/screenshot-3.png container: TZ
tagline: description:
en_US: Store securely encrypted backups in the cloud! en_US: ""
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Duplicati/thumbnail.png index: /
tips: {} port_map: "8200"
title: ports:
en_US: Duplicati - configurable: "no"
container: "8200"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /backups
description:
en_US: ""
- configurable: "no"
container: /source
description:
en_US: ""
description:
en_US: Duplicati is a free, open source, backup client that securely stores encrypted, incremental, compressed backups on cloud storage services and remote file servers.
developer: duplicati
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Duplicati/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Duplicati/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Duplicati/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Duplicati/screenshot-3.png
tagline:
en_US: Store securely encrypted backups in the cloud!
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Duplicati/thumbnail.png
tips: {}
title:
en_US: Duplicati
x-casaos: x-casaos:
main_app: duplicati architectures:
- amd64
- arm64
main_app: duplicati

View File

@ -145,7 +145,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -91,4 +91,8 @@ services:
title: title:
en_US: Emby en_US: Emby
x-casaos: x-casaos:
architectures:
- amd64
- arm
- arm64
main_app: emby main_app: emby

View File

@ -85,7 +85,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Embystat", "host_name": "Embystat",
"cmd": [] "cmd": []

View File

@ -1,65 +1,69 @@
name: embystat name: embystat
services: services:
embystat: embystat:
environment: environment:
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/embystat:latest image: linuxserver/embystat:0.2.0
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 6555 - target: 6555
published: "6555" published: "6555"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/embystat/config source: /DATA/AppData/embystat/config
target: /config target: /config
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
port_map: "6555"
ports:
- configurable: "no"
container: "6555"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
description: description:
en_US: EmbyStat is a personal web server that can calculate all kinds of statistics from your (local) Emby or Jellyfin server. Just install this on your server and let him calculate all kinds of fun stuff. This project is still in Alpha phase, but feel free to pull in on your computer and test it out yourself. When the time is right I will host a full informational website/release for common platforms and Wiki pages. en_US: ""
developer: Embystart Team - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Embystat/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Embystat/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Embystat/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Embystat/screenshot-3.png container: TZ
tagline: description:
en_US: Calculate all kinds of statistics from your (local) Emby or Jellyfin server en_US: ""
thumbnail: "" port_map: "6555"
tips: {} ports:
title: - configurable: "no"
en_US: Embystat container: "6555"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
description:
en_US: EmbyStat is a personal web server that can calculate all kinds of statistics from your (local) Emby or Jellyfin server. Just install this on your server and let him calculate all kinds of fun stuff. This project is still in Alpha phase, but feel free to pull in on your computer and test it out yourself. When the time is right I will host a full informational website/release for common platforms and Wiki pages.
developer: Embystart Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Embystat/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Embystat/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Embystat/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Embystat/screenshot-3.png
tagline:
en_US: Calculate all kinds of statistics from your (local) Emby or Jellyfin server
thumbnail: ""
tips: {}
title:
en_US: Embystat
x-casaos: x-casaos:
main_app: embystat architectures:
- amd64
- arm
- arm64
main_app: embystat

View File

@ -95,7 +95,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,82 +1,86 @@
name: filebrowser name: filebrowser
services: services:
filebrowser: filebrowser:
environment: environment:
PGID: $PGID PGID: $PGID
PUID: $PUID PUID: $PUID
TZ: $TZ TZ: $TZ
image: filebrowser/filebrowser:latest image: filebrowser/filebrowser:v2.23.0
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 80 - target: 80
published: "80" published: "80"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/db source: /DATA/AppData/$AppID/db
target: /db target: /db
- type: bind - type: bind
source: /DATA source: /DATA
target: /srv target: /srv
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Cloud category: Cloud
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: "no"
container: PUID
description:
en_US: Run FileBrowser as specified uid.
- configurable: "no"
container: PGID
description:
en_US: Run FileBrowser as specified gid.
index: /
port_map: "80"
ports:
- configurable: advanced
container: "80"
description:
en_US: WebUI Port
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /db
description:
en_US: FileBrowser database directory.
- configurable: advanced
container: /srv
description:
en_US: FileBrowser managed directory.
description: description:
en_US: File Browser - Webbased File Browser including sharing functions etc. en_US: TimeZone
developer: File Browser - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/FileBrowser/icon.png container: PUID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/FileBrowser/screenshot-1.jpg en_US: Run FileBrowser as specified uid.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/FileBrowser/screenshot-2.jpg - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/FileBrowser/screenshot-3.jpg container: PGID
tagline: description:
en_US: Upload, delete, preview, rename, edit and share your files. en_US: Run FileBrowser as specified gid.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/FileBrowser/thumbnail.jpg index: /
tips: port_map: "80"
before_install: ports:
- content: - configurable: advanced
en_US: Default Account container: "80"
- content: description:
en_US: 'Username: ' en_US: WebUI Port
value: admin protocol: tcp
- content: shell: sh
en_US: 'Password: ' volumes:
value: admin - configurable: "no"
title: container: /db
en_US: FileBrowser description:
en_US: FileBrowser database directory.
- configurable: advanced
container: /srv
description:
en_US: FileBrowser managed directory.
description:
en_US: File Browser - Webbased File Browser including sharing functions etc.
developer: File Browser
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/FileBrowser/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/FileBrowser/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/FileBrowser/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/FileBrowser/screenshot-3.jpg
tagline:
en_US: Upload, delete, preview, rename, edit and share your files.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/FileBrowser/thumbnail.jpg
tips:
before_install:
- content:
en_US: Default Account
- content:
en_US: 'Username: '
value: admin
- content:
en_US: 'Password: '
value: admin
title:
en_US: FileBrowser
x-casaos: x-casaos:
main_app: filebrowser architectures:
- amd64
- arm64
- arm
main_app: filebrowser

View File

@ -90,7 +90,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,75 +1,78 @@
name: gitea name: gitea
services: services:
gitea: gitea:
environment: environment:
USER_GID: "1000" USER_GID: "1000"
USER_UID: "1000" USER_UID: "1000"
image: gitea/gitea:1 image: gitea/gitea:1.18.5
mem_reservation: "268435456" mem_reservation: "268435456"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 3000 - target: 3000
published: "3000" published: "3000"
protocol: tcp protocol: tcp
- target: 22 - target: 22
published: "222" published: "222"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/data source: /DATA/AppData/$AppID/data
target: /data target: /data
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Developer category: Developer
container: container:
envs: envs:
- configurable: advanced - configurable: advanced
container: USER_UID container: USER_UID
description:
en_US: The UID (Unix user ID) of the user that runs Gitea
- configurable: advanced
container: USER_GID
description:
en_US: The GID (Unix group ID) of the user that runs Gitea
index: /
port_map: "3000"
ports:
- configurable: advanced
container: "3000"
description:
en_US: WebUI Port
protocol: tcp
- configurable: advanced
container: "22"
description:
en_US: SSH Port
protocol: tcp
shell: sh
volumes:
- configurable: advanced
container: /data
description:
en_US: Gitea data directory.
description: description:
en_US: Gitea is a community managed lightweight code hosting solution written in Go. en_US: The UID (Unix user ID) of the user that runs Gitea
developer: Gitea - configurable: advanced
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/icon.png container: USER_GID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-1.jpg en_US: The GID (Unix group ID) of the user that runs Gitea
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-2.jpg index: /
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-3.jpg port_map: "3000"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-4.jpg ports:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-5.jpg - configurable: advanced
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-6.jpg container: "3000"
tagline: description:
en_US: Git with a cup of tea en_US: WebUI Port
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/thumbnail.png protocol: tcp
tips: - configurable: advanced
before_install: container: "22"
- content: description:
en_US: When the App is installed, the first account registered will become the administrator account. en_US: SSH Port
title: protocol: tcp
en_US: Gitea shell: sh
volumes:
- configurable: advanced
container: /data
description:
en_US: Gitea data directory.
description:
en_US: Gitea is a community managed lightweight code hosting solution written in Go.
developer: Gitea
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-3.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-4.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-5.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/screenshot-6.jpg
tagline:
en_US: Git with a cup of tea
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Gitea/thumbnail.png
tips:
before_install:
- content:
en_US: When the App is installed, the first account registered will become the administrator account.
title:
en_US: Gitea
x-casaos: x-casaos:
main_app: gitea architectures:
- amd64
- arm64
main_app: gitea

View File

@ -57,7 +57,7 @@
}, },
"restart_policy": "always", "restart_policy": "always",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -44,4 +44,8 @@ services:
title: title:
en_US: Grafana en_US: Grafana
x-casaos: x-casaos:
architectures:
- amd64
- arm64
- arm
main_app: grafana main_app: grafana

View File

@ -76,7 +76,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,57 +1,61 @@
name: homeassistant name: homeassistant
services: services:
homeassistant: homeassistant:
environment: environment:
PGID: $PGID PGID: $PGID
PUID: $PUID PUID: $PUID
TZ: $TZ TZ: $TZ
image: linuxserver/homeassistant:latest image: linuxserver/homeassistant:2023.3.1
mem_reservation: "268435456" mem_reservation: "268435456"
network_mode: host network_mode: host
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Home Automation category: Home Automation
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: "no"
container: PUID
description:
en_US: Run HomeAssistant as specified uid.
- configurable: "no"
container: PGID
description:
en_US: Run HomeAssistant as specified gid.
index: /
port_map: "8123"
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: HomeAssistant config directory.
description: description:
en_US: Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. en_US: TimeZone
developer: Home Assistant - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/icon.png container: PUID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/screenshot-1.jpg en_US: Run HomeAssistant as specified uid.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/screenshot-2.jpg - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/screenshot-3.jpg container: PGID
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/screenshot-4.jpg description:
tagline: en_US: Run HomeAssistant as specified gid.
en_US: Awaken your home index: /
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/thumbnail.png port_map: "8123"
tips: {} shell: bash
title: volumes:
en_US: Home Assistant - configurable: "no"
container: /config
description:
en_US: HomeAssistant config directory.
description:
en_US: Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.
developer: Home Assistant
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/screenshot-3.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/screenshot-4.jpg
tagline:
en_US: Awaken your home
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/HomeAssistant/thumbnail.png
tips: {}
title:
en_US: Home Assistant
x-casaos: x-casaos:
main_app: homeassistant architectures:
- amd64
- arm
- arm64
main_app: homeassistant

View File

@ -99,7 +99,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -75,4 +75,8 @@ services:
title: title:
en_US: Jackett en_US: Jackett
x-casaos: x-casaos:
architectures:
- amd64
- arm
- arm64
main_app: jackett main_app: jackett

View File

@ -177,7 +177,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,118 +1,122 @@
name: jellyfin name: jellyfin
services: services:
jellyfin: jellyfin:
devices: devices:
- /dev/dri:/dev/dri - /dev/dri:/dev/dri
- /dev/vcsm:/dev/vcsm - /dev/vcsm:/dev/vcsm
- /dev/vchiq:/dev/vchiq - /dev/vchiq:/dev/vchiq
- /dev/video10:/dev/video10 - /dev/video10:/dev/video10
- /dev/video11:/dev/video11 - /dev/video11:/dev/video11
- /dev/video12:/dev/video12 - /dev/video12:/dev/video12
environment: environment:
JELLYFIN_PublishedServerUrl: $APP_IPV4 JELLYFIN_PublishedServerUrl: $APP_IPV4
PGID: $PGID PGID: $PGID
PUID: $PUID PUID: $PUID
TZ: $TZ TZ: $TZ
image: linuxserver/jellyfin:latest image: linuxserver/jellyfin:10.8.9
mem_reservation: "268435456" mem_reservation: "268435456"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8096 - target: 8096
published: "8096" published: "8096"
protocol: tcp protocol: tcp
- target: 8920 - target: 8920
published: "8920" published: "8920"
protocol: tcp protocol: tcp
- target: 7359 - target: 7359
published: "7359" published: "7359"
protocol: tcp protocol: tcp
- target: 1900 - target: 1900
published: "1900" published: "1900"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Media source: /DATA/Media
target: /Media target: /Media
- type: bind - type: bind
source: /opt/vc/lib source: /opt/vc/lib
target: /opt/vc/lib target: /opt/vc/lib
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: "no"
container: PUID
description:
en_US: Run Jellyfin as specified uid.
- configurable: "no"
container: PGID
description:
en_US: Run Jellyfin as specified gid.
- configurable: advanced
container: JELLYFIN_PublishedServerUrl
description:
en_US: The autodiscovery response domain or IP address.
index: /
port_map: "8096"
ports:
- configurable: advanced
container: "8096"
description:
en_US: WebUI HTTP Port
protocol: tcp
- configurable: advanced
container: "8920"
description:
en_US: WebUI HTTPS Port
protocol: tcp
- configurable: "no"
container: "7359"
description:
en_US: Jellyfin auto-discovery Port
protocol: tcp
- configurable: "no"
container: "1900"
description:
en_US: Jellyfin DLNA Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: Jellyfin config directory.
- configurable: advanced
container: /Media
description:
en_US: Jellyfin Media directory.
- configurable: advanced
container: /opt/vc/lib
description:
en_US: OpenMax libs
description: description:
en_US: Jellyfin enables you to collect, manage, and stream your media. Run the Jellyfin server on your system and gain access to the leading free-software entertainment system, bells and whistles included. en_US: TimeZone
developer: Jellyfin - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/icon.png container: PUID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/screenshot-1.jpg en_US: Run Jellyfin as specified uid.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/screenshot-2.jpg - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/screenshot-3.jpg container: PGID
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/screenshot-4.jpg description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/screenshot-5.jpg en_US: Run Jellyfin as specified gid.
tagline: - configurable: advanced
en_US: Puts you in control of your media. container: JELLYFIN_PublishedServerUrl
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/thumbnail.png description:
tips: {} en_US: The autodiscovery response domain or IP address.
title: index: /
en_US: Jellyfin port_map: "8096"
ports:
- configurable: advanced
container: "8096"
description:
en_US: WebUI HTTP Port
protocol: tcp
- configurable: advanced
container: "8920"
description:
en_US: WebUI HTTPS Port
protocol: tcp
- configurable: "no"
container: "7359"
description:
en_US: Jellyfin auto-discovery Port
protocol: tcp
- configurable: "no"
container: "1900"
description:
en_US: Jellyfin DLNA Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: Jellyfin config directory.
- configurable: advanced
container: /Media
description:
en_US: Jellyfin Media directory.
- configurable: advanced
container: /opt/vc/lib
description:
en_US: OpenMax libs
description:
en_US: Jellyfin enables you to collect, manage, and stream your media. Run the Jellyfin server on your system and gain access to the leading free-software entertainment system, bells and whistles included.
developer: Jellyfin
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/screenshot-3.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/screenshot-4.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/screenshot-5.jpg
tagline:
en_US: Puts you in control of your media.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/thumbnail.png
tips: {}
title:
en_US: Jellyfin
x-casaos: x-casaos:
main_app: jellyfin architectures:
- amd64
- arm
- arm64
main_app: jellyfin

View File

@ -107,7 +107,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Lazylibrarian", "host_name": "Lazylibrarian",
"cmd": [] "cmd": []

View File

@ -1,84 +1,88 @@
name: lazylibrarian name: lazylibrarian
services: services:
lazylibrarian: lazylibrarian:
environment: environment:
DOCKER_MODS: linuxserver/calibre-web:calibre|linuxserver/mods:lazylibrarian-ffmpeg DOCKER_MODS: linuxserver/calibre-web:calibre|linuxserver/mods:lazylibrarian-ffmpeg
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/lazylibrarian:latest image: linuxserver/lazylibrarian:version-a7d5948a
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 5299 - target: 5299
published: "5299" published: "5299"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/Downloads source: /DATA/Downloads
target: /downloads target: /downloads
- type: bind - type: bind
source: /path/to/data source: /path/to/data
target: /books target: /books
- type: bind - type: bind
source: /DATA/AppData/lazylibrarian/config source: /DATA/AppData/lazylibrarian/config
target: /config target: /config
x-casaos: x-casaos:
author: asaOS Team author: asaOS Team
category: Downloader category: Downloader
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
- configurable: "no"
container: DOCKER_MODS
description:
en_US: ""
port_map: "5299"
ports:
- configurable: "no"
container: "5299"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /downloads
description:
en_US: ""
- configurable: "no"
container: /books
description:
en_US: ""
- configurable: "no"
container: /config
description:
en_US: ""
description: description:
en_US: Lazylibrarian is a program to follow authors and grab metadata for all your digital reading needs. It uses a combination of Goodreads Librarything and optionally GoogleBooks as sources for author info and book info. This container is based on the DobyTang fork. en_US: ""
developer: Lazylibrarian Team - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lazylibrarian/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lazylibrarian/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lazylibrarian/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lazylibrarian/screenshot-3.png container: TZ
tagline: description:
en_US: eBook Auto Downloader en_US: ""
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lazylibrarian/thumbnail.png - configurable: "no"
tips: {} container: DOCKER_MODS
title: description:
en_US: Lazylibrarian en_US: ""
port_map: "5299"
ports:
- configurable: "no"
container: "5299"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /downloads
description:
en_US: ""
- configurable: "no"
container: /books
description:
en_US: ""
- configurable: "no"
container: /config
description:
en_US: ""
description:
en_US: Lazylibrarian is a program to follow authors and grab metadata for all your digital reading needs. It uses a combination of Goodreads Librarything and optionally GoogleBooks as sources for author info and book info. This container is based on the DobyTang fork.
developer: Lazylibrarian Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lazylibrarian/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lazylibrarian/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lazylibrarian/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lazylibrarian/screenshot-3.png
tagline:
en_US: eBook Auto Downloader
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lazylibrarian/thumbnail.png
tips: {}
title:
en_US: Lazylibrarian
x-casaos: x-casaos:
main_app: lazylibrarian architectures:
- amd64
- arm
- arm64
main_app: lazylibrarian

View File

@ -99,7 +99,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Lidarr", "host_name": "Lidarr",
"cmd": [] "cmd": []

View File

@ -1,79 +1,83 @@
name: lidarr name: lidarr
services: services:
lidarr: lidarr:
environment: environment:
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/lidarr:latest image: linuxserver/lidarr:1.0.2
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8686 - target: 8686
published: "8686" published: "8686"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/lidarr/config source: /DATA/AppData/lidarr/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Media/Music source: /DATA/Media/Music
target: /music target: /music
- type: bind - type: bind
source: /DATA/Downloads source: /DATA/Downloads
target: /downloads target: /downloads
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Downloader category: Downloader
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
port_map: "8686"
ports:
- configurable: "no"
container: "8686"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /music
description:
en_US: ""
- configurable: "no"
container: /downloads
description:
en_US: ""
description: description:
en_US: Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new albums from your favorite artists and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available. en_US: ""
developer: lidarr Team - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lidarr/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lidarr/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lidarr/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lidarr/screenshot-3.png container: TZ
tagline: description:
en_US: Music collection manager for Usenet and BitTorrent users en_US: ""
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lidarr/thumbnail.png port_map: "8686"
tips: {} ports:
title: - configurable: "no"
en_US: Lidarr container: "8686"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /music
description:
en_US: ""
- configurable: "no"
container: /downloads
description:
en_US: ""
description:
en_US: Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new albums from your favorite artists and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available.
developer: lidarr Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lidarr/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lidarr/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lidarr/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lidarr/screenshot-3.png
tagline:
en_US: Music collection manager for Usenet and BitTorrent users
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Lidarr/thumbnail.png
tips: {}
title:
en_US: Lidarr
x-casaos: x-casaos:
main_app: lidarr architectures:
- amd64
- arm
- arm64
main_app: lidarr

View File

@ -96,7 +96,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Mylar3", "host_name": "Mylar3",
"cmd": [] "cmd": []

View File

@ -1,75 +1,79 @@
name: mylar3 name: mylar3
services: services:
mylar3: mylar3:
environment: environment:
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
image: lscr.io/linuxserver/mylar3:latest image: linuxserver/mylar3:0.7.0
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8090 - target: 8090
published: "8090" published: "8090"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/mylar3/config source: /DATA/AppData/mylar3/config
target: /config target: /config
- type: bind - type: bind
source: /path/to/comics source: /path/to/comics
target: /comics target: /comics
- type: bind - type: bind
source: /DATA/Downloads source: /DATA/Downloads
target: /downloads target: /downloads
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Downloader category: Downloader
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
port_map: "8090"
ports:
- configurable: "no"
container: "8090"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /comics
description:
en_US: ""
- configurable: "no"
container: /downloads
description:
en_US: ""
description: description:
en_US: Mylar is an automated Comic Book (cbr/cbz) downloader program for use with NZB and torrents. Mylar allows you to create a watchlist of series that it monitors for various things (new issues, updated information, etc). It will grab, sort, and rename downloaded issues. It will also allow you to monitor weekly pull-lists for items belonging to said watchlisted series to download, as well as being able to monitor and maintain story-arcs. en_US: ""
developer: Mylar3 Team - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/screenshot-2.png port_map: "8090"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/screenshot-3.png ports:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/screenshot-4.png - configurable: "no"
tagline: container: "8090"
en_US: Automatic comic book (cbr/cbz) downloader description:
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/thumbnail.png en_US: ""
tips: {} protocol: tcp
title: shell: sh
en_US: Mylar3 volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /comics
description:
en_US: ""
- configurable: "no"
container: /downloads
description:
en_US: ""
description:
en_US: Mylar is an automated Comic Book (cbr/cbz) downloader program for use with NZB and torrents. Mylar allows you to create a watchlist of series that it monitors for various things (new issues, updated information, etc). It will grab, sort, and rename downloaded issues. It will also allow you to monitor weekly pull-lists for items belonging to said watchlisted series to download, as well as being able to monitor and maintain story-arcs.
developer: Mylar3 Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/screenshot-3.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/screenshot-4.png
tagline:
en_US: Automatic comic book (cbr/cbz) downloader
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Mylar3/thumbnail.png
tips: {}
title:
en_US: Mylar3
x-casaos: x-casaos:
main_app: mylar3 architectures:
- amd64
- arm
- arm64
main_app: mylar3

View File

@ -76,7 +76,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"cmd": [] "cmd": []
}, },

View File

@ -1,56 +1,60 @@
name: n8n name: n8n
services: services:
n8n: n8n:
environment: environment:
TZ: $TZ TZ: $TZ
image: n8nio/n8n:latest image: n8nio/n8n:0.218.0
mem_reservation: "335544320" mem_reservation: "335544320"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 5678 - target: 5678
published: "5678" published: "5678"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/.n8n source: /DATA/AppData/$AppID/.n8n
target: /.n8n target: /home/node/.n8n
x-casaos: x-casaos:
author: YoussofKhawaja author: YoussofKhawaja
category: Utilities category: Utilities
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
index: /
port_map: "5678"
ports:
- configurable: "no"
container: "5678"
description:
en_US: web port
protocol: tcp
shell: bash
volumes:
- configurable: advanced
container: /.n8n
description:
en_US: n8n directory.
description: description:
en_US: Free and source-available fair-code licensed workflow automation tool. Easily automate tasks across different services. en_US: TimeZone
developer: n8n index: /
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/N8n/icon.png port_map: "5678"
screenshot_link: ports:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/N8n/screenshot-1.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/N8n/screenshot-2.png container: "5678"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/N8n/screenshot-3.png description:
tagline: en_US: web port
en_US: Workflow automation tool protocol: tcp
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/N8n/thumbnail.png shell: bash
tips: {} volumes:
title: - configurable: advanced
en_US: n8n container: /home/node/.n8n
description:
en_US: n8n directory.
description:
en_US: Free and source-available fair-code licensed workflow automation tool. Easily automate tasks across different services.
developer: n8n
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/N8n/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/N8n/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/N8n/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/N8n/screenshot-3.png
tagline:
en_US: Workflow automation tool
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/N8n/thumbnail.png
tips: {}
title:
en_US: n8n
x-casaos: x-casaos:
main_app: n8n architectures:
- amd64
- arm64
- arm
main_app: n8n

View File

@ -75,7 +75,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,57 +1,65 @@
name: nextcloud name: nextcloud
services: services:
nextcloud: nextcloud:
image: nextcloud:latest image: nextcloud:25.0.4
mem_reservation: "536870912" mem_reservation: "536870912"
network_mode: bridge network_mode: bridge
ports:
- target: 80
published: "10080"
protocol: tcp
- target: 443
published: "10443"
protocol: tcp
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/$AppID/var/www/html
target: /var/www/html
x-casaos:
author: CasaOS Team
category: Cloud
container:
index: /
port_map: "80"
ports: ports:
- target: 80 - configurable: advanced
published: "10080" container: "80"
protocol: tcp
- target: 443
published: "10443"
protocol: tcp
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/$AppID/var/www/html
target: /var/www/html
x-casaos:
author: CasaOS Team
category: Cloud
container:
index: /
port_map: "80"
ports:
- configurable: advanced
container: "80"
description:
en_US: WebUI HTTP Port
protocol: tcp
- configurable: advanced
container: "443"
description:
en_US: WebUI HTTPS Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /var/www/html
description:
en_US: Nextcloud config directory.
description: description:
en_US: Nextcloud puts your data at your fingertips, under your control. Store your documents, calendar, contacts and photos on a server at home, at one of our providers or in a data center you trust. en_US: WebUI HTTP Port
developer: Nextcloud protocol: tcp
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nextcloud/icon.png - configurable: advanced
screenshot_link: container: "443"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nextcloud/screenshot-1.png description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nextcloud/screenshot-2.png en_US: WebUI HTTPS Port
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nextcloud/screenshot-3.png protocol: tcp
tagline: shell: bash
en_US: The productivity platform that keeps you in control volumes:
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nextcloud/thumbnail.jpg - configurable: "no"
tips: {} container: /var/www/html
title: description:
en_US: Nextcloud en_US: Nextcloud config directory.
description:
en_US: Nextcloud puts your data at your fingertips, under your control. Store your documents, calendar, contacts and photos on a server at home, at one of our providers or in a data center you trust.
developer: Nextcloud
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nextcloud/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nextcloud/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nextcloud/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nextcloud/screenshot-3.png
tagline:
en_US: The productivity platform that keeps you in control
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nextcloud/thumbnail.jpg
tips: {}
title:
en_US: Nextcloud
x-casaos: x-casaos:
main_app: nextcloud architectures:
- amd64
- arm
- arm64
- "386"
- mips64le
- ppc64le
- s390x
main_app: nextcloud

View File

@ -90,7 +90,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,91 +1,95 @@
name: nginxproxymanager name: nginxproxymanager
services: services:
nginxproxymanager: nginxproxymanager:
image: jc21/nginx-proxy-manager:latest image: jc21/nginx-proxy-manager:2.9.19
mem_reservation: "134217728" mem_reservation: "134217728"
network_mode: bridge network_mode: bridge
ports:
- target: 80
published: "80"
protocol: tcp
- target: 443
published: "443"
protocol: tcp
- target: 81
published: "81"
protocol: tcp
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/$AppID/data
target: /data
- type: bind
source: /DATA/AppData/$AppID/etc/letsencrypt
target: /etc/letsencrypt
x-casaos:
author: CasaOS Team
category: Network
container:
index: /
port_map: "81"
ports: ports:
- target: 80 - configurable: advanced
published: "80" container: "80"
protocol: tcp
- target: 443
published: "443"
protocol: tcp
- target: 81
published: "81"
protocol: tcp
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/$AppID/data
target: /data
- type: bind
source: /DATA/AppData/$AppID/etc/letsencrypt
target: /etc/letsencrypt
x-casaos:
author: CasaOS Team
category: Network
container:
index: /
port_map: "81"
ports:
- configurable: advanced
container: "80"
description:
en_US: Nginx HTTP Port
protocol: tcp
- configurable: advanced
container: "443"
description:
en_US: Nginx HTTPS Port
protocol: tcp
- configurable: basic
container: "81"
description:
en_US: WebUI Port
protocol: tcp
shell: sh
volumes:
- configurable: advanced
container: /data
description:
en_US: Nginx Proxy Manager data directory.
- configurable: advanced
container: /etc/letsencrypt
description:
en_US: Nginx Proxy Manager letsencrypt directory.
description: description:
en_US: Managing Nginx proxy hosts with a simple, powerful interface. en_US: Nginx HTTP Port
developer: Nginx Proxy Manager protocol: tcp
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/NginxProxyManager/icon.png - configurable: advanced
screenshot_link: container: "443"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/NginxProxyManager/screenshot-1.jpg description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/NginxProxyManager/screenshot-2.jpg en_US: Nginx HTTPS Port
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/NginxProxyManager/screenshot-3.jpg protocol: tcp
tagline: - configurable: basic
en_US: Just what the name says container: "81"
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/NginxProxyManager/thumbnail.png description:
tips: en_US: WebUI Port
before_install: protocol: tcp
- content: shell: sh
en_US: ⚠️ Warning! volumes:
- content: - configurable: advanced
en_US: This is a technical app, please make sure you know what you are doing. container: /data
- content: description:
en_US: Nginx Proxy Manager occupies ports 80 and 443 by default for built-in Nginx use. It occupies port 81 for the admin page. en_US: Nginx Proxy Manager data directory.
- content: - configurable: advanced
en_US: Please change the CasaOS WebUI port to a port other than 80/81/443. And pay attention to whether the ports conflict with other apps. Otherwise, it may cause your CasaOS to run abnormally. container: /etc/letsencrypt
- content: description:
en_US: "" en_US: Nginx Proxy Manager letsencrypt directory.
- content: description:
en_US: Default Administrator User en_US: Managing Nginx proxy hosts with a simple, powerful interface.
- content: developer: Nginx Proxy Manager
en_US: 'Username: ' icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/NginxProxyManager/icon.png
value: admin@example.com screenshot_link:
- content: - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/NginxProxyManager/screenshot-1.jpg
en_US: 'Password: ' - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/NginxProxyManager/screenshot-2.jpg
value: changeme - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/NginxProxyManager/screenshot-3.jpg
title: tagline:
en_US: Nginx Proxy Manager en_US: Just what the name says
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/NginxProxyManager/thumbnail.png
tips:
before_install:
- content:
en_US: ⚠️ Warning!
- content:
en_US: This is a technical app, please make sure you know what you are doing.
- content:
en_US: Nginx Proxy Manager occupies ports 80 and 443 by default for built-in Nginx use. It occupies port 81 for the admin page.
- content:
en_US: Please change the CasaOS WebUI port to a port other than 80/81/443. And pay attention to whether the ports conflict with other apps. Otherwise, it may cause your CasaOS to run abnormally.
- content:
en_US: ""
- content:
en_US: Default Administrator User
- content:
en_US: 'Username: '
value: admin@example.com
- content:
en_US: 'Password: '
value: changeme
title:
en_US: Nginx Proxy Manager
x-casaos: x-casaos:
main_app: nginxproxymanager architectures:
- amd64
- arm64
- arm
main_app: nginxproxymanager

View File

@ -66,7 +66,7 @@
}, },
"restart_policy": "always", "restart_policy": "always",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -46,4 +46,9 @@ services:
title: title:
en_US: Node-RED en_US: Node-RED
x-casaos: x-casaos:
architectures:
- amd64
- arm64
- s390x
- arm
main_app: node-red main_app: node-red

View File

@ -104,7 +104,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Nzbget", "host_name": "Nzbget",
"cmd": [] "cmd": []

View File

@ -1,83 +1,87 @@
name: nzbget name: nzbget
services: services:
nzbget: nzbget:
environment: environment:
NZBGET_PASS: tegbzn6789 NZBGET_PASS: tegbzn6789
NZBGET_USER: nzbget NZBGET_USER: nzbget
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/nzbget:latest image: linuxserver/nzbget:21.1.20230119
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 6789 - target: 6789
published: "6789" published: "6789"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/nzbget/config source: /DATA/AppData/nzbget/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Downloads source: /DATA/Downloads
target: /downloads target: /downloads
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Downloader category: Downloader
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
- configurable: "no"
container: NZBGET_USER
description:
en_US: ""
- configurable: "no"
container: NZBGET_PASS
description:
en_US: ""
port_map: "6789"
ports:
- configurable: "no"
container: "6789"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /downloads
description:
en_US: ""
description: description:
en_US: NZBGet can run on almost any device - classic PC, NAS, media player, SAT-receiver, WLAN-router, etc. The download area provides precompiled binaries for Windows, macOS, Linux (compatible with many CPUs and platform variants), FreeBSD and Android. For other platforms the program can be compiled from sources. en_US: ""
developer: ' Nzbget Team' - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/screenshot-3.png container: TZ
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/screenshot-4.png description:
tagline: en_US: ""
en_US: Efficient Usenet downloader - configurable: "no"
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/thumbnail.png container: NZBGET_USER
tips: {} description:
title: en_US: ""
en_US: Nzbget - configurable: "no"
container: NZBGET_PASS
description:
en_US: ""
port_map: "6789"
ports:
- configurable: "no"
container: "6789"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /downloads
description:
en_US: ""
description:
en_US: NZBGet can run on almost any device - classic PC, NAS, media player, SAT-receiver, WLAN-router, etc. The download area provides precompiled binaries for Windows, macOS, Linux (compatible with many CPUs and platform variants), FreeBSD and Android. For other platforms the program can be compiled from sources.
developer: ' Nzbget Team'
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/screenshot-3.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/screenshot-4.png
tagline:
en_US: Efficient Usenet downloader
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Nzbget/thumbnail.png
tips: {}
title:
en_US: Nzbget
x-casaos: x-casaos:
main_app: nzbget architectures:
- amd64
- arm
- arm64
main_app: nzbget

View File

@ -91,7 +91,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Ombi", "host_name": "Ombi",
"cmd": [] "cmd": []

View File

@ -1,70 +1,74 @@
name: ombi name: ombi
services: services:
ombi: ombi:
environment: environment:
BASE_URL: /ombi BASE_URL: /ombi
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/ombi:latest image: linuxserver/ombi:4.35.10
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 3579 - target: 3579
published: "3579" published: "3579"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/ombi/config source: /DATA/AppData/ombi/config
target: /config target: /config
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
- configurable: "no"
container: BASE_URL
description:
en_US: ""
port_map: "3579"
ports:
- configurable: "no"
container: "3579"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
description: description:
en_US: Ombi is a self-hosted web application that automatically gives your shared Plex or Emby users the ability to request content by themselves! Ombi can be linked to multiple TV Show and Movie DVR tools to create a seamless end-to-end experience for your users. en_US: ""
developer: Sabnzbd Team - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Ombi/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Ombi/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Ombi/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Ombi/screenshot-3.png container: TZ
tagline: description:
en_US: 'Friendly media request tool, automatically syncs with your media servers! ' en_US: ""
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Ombi/thumbnail.png - configurable: "no"
tips: {} container: BASE_URL
title: description:
en_US: Ombi en_US: ""
port_map: "3579"
ports:
- configurable: "no"
container: "3579"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
description:
en_US: Ombi is a self-hosted web application that automatically gives your shared Plex or Emby users the ability to request content by themselves! Ombi can be linked to multiple TV Show and Movie DVR tools to create a seamless end-to-end experience for your users.
developer: Sabnzbd Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Ombi/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Ombi/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Ombi/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Ombi/screenshot-3.png
tagline:
en_US: 'Friendly media request tool, automatically syncs with your media servers! '
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Ombi/thumbnail.png
tips: {}
title:
en_US: Ombi
x-casaos: x-casaos:
main_app: ombi architectures:
- amd64
- arm
- arm64
main_app: ombi

View File

@ -109,7 +109,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -0,0 +1,91 @@
name: openhab
services:
openhab:
environment:
CRYPTO_POLICY: unlimited
PGID: $PGID
PUID: $PUID
image: openhab/openhab:3.4.2
mem_reservation: "268435456"
network_mode: host
restart: unless-stopped
volumes:
- type: bind
source: /etc/localtime
target: /etc/localtime
read_only: true
- type: bind
source: /etc/timezone
target: /etc/timezone
read_only: true
- type: bind
source: /DATA/AppData/$AppID/addons
target: /opt/openhab/addons
- type: bind
source: /DATA/AppData/$AppID/conf
target: /opt/openhab/conf
- type: bind
source: /DATA/AppData/$AppID/userdata
target: /opt/openhab/userdata
x-casaos:
author: CasaOS Team
category: Home Automation
container:
envs:
- configurable: "no"
container: CRYPTO_POLICY
description:
en_US: Crypto Policy
- configurable: "no"
container: PUID
description:
en_US: Run OpenHAB as specified uid.
- configurable: "no"
container: PGID
description:
en_US: Run OpenHAB as specified gid.
index: /
port_map: "8080"
shell: bash
volumes:
- configurable: "no"
container: /etc/localtime
description:
en_US: Ties the time of the container to the host's time, read only so the container cannot change the host's time.
- configurable: "no"
container: /etc/timezone
description:
en_US: Ties the timezone of the container to the host's time zone, read only so the container cannot change the host's time zone.
- configurable: "no"
container: /opt/openhab/addons
description:
en_US: Only needed if installing addons unavailable via UI or the Karaf Console.
- configurable: "no"
container: /opt/openhab/conf
description:
en_US: 'Location of the conf folder for openHAB configurations (Note: you must create these folders on the host before running the container).'
- configurable: "no"
container: /opt/openhab/userdata
description:
en_US: Location for logs, cache, persistence databases, etc.
description:
en_US: The open Home Automation Bus (openHAB, pronounced ˈəʊpənˈhæb) is an open source, technology agnostic home automation platform which runs as the center of your smart home! Its ability to integrate a multitude of other devices and systems. openHAB includes other home automation systems, (smart) devices and other technologies into a single solution. To provide a uniform user interface and a common approach to automation rules across the entire system, regardless of the number of manufacturers and sub-systems involved. Giving you the most flexible tool available to make almost any home automation wish come true; if you can think it, odds are that you can implement it with openHAB.
developer: openHAB
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenHAB/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenHAB/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenHAB/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenHAB/screenshot-3.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenHAB/screenshot-4.jpg
tagline:
en_US: Empowering the smart home
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenHAB/thumbnail.png
tips: {}
title:
en_US: OpenHAB
x-casaos:
architectures:
- amd64
- arm64
- arm
main_app: openhab

View File

@ -58,7 +58,7 @@
}, },
"restart_policy": "always", "restart_policy": "always",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -1,40 +1,47 @@
name: openspeedtest name: openspeedtest
services: services:
openspeedtest: openspeedtest:
image: openspeedtest/latest:latest image: openspeedtest/latest:v0.0.1
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports:
- target: 3000
published: "3000"
protocol: tcp
restart: always
x-casaos:
author: OpenSpeedTest
category: Utilities
container:
index: /
port_map: "3000"
ports: ports:
- target: 3000 - configurable: "no"
published: "3000" container: "3000"
protocol: tcp
restart: always
x-casaos:
author: OpenSpeedTest
category: Utilities
container:
index: /
port_map: "3000"
ports:
- configurable: "no"
container: "3000"
description:
en_US: ""
protocol: tcp
shell: sh
description: description:
en_US: An application for launching HTML5 Network Speed Test Server. You can test download & upload speed from any device within your network with a web browser that is IE10 or new. en_US: ""
developer: OpenSpeedTest protocol: tcp
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenSpeedTest/icon.png shell: sh
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenSpeedTest/screenshot-1.png en_US: An application for launching HTML5 Network Speed Test Server. You can test download & upload speed from any device within your network with a web browser that is IE10 or new.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenSpeedTest/screenshot-2.png developer: OpenSpeedTest
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenSpeedTest/screenshot-3.png icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenSpeedTest/icon.png
tagline: screenshot_link:
en_US: HTML5 Network Speed Test Server. - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenSpeedTest/screenshot-1.png
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenSpeedTest/thumbnail.png - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenSpeedTest/screenshot-2.png
tips: {} - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenSpeedTest/screenshot-3.png
title: tagline:
en_US: OpenSpeedTest en_US: HTML5 Network Speed Test Server.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/OpenSpeedTest/thumbnail.png
tips: {}
title:
en_US: OpenSpeedTest
x-casaos: x-casaos:
main_app: openspeedtest architectures:
- amd64
- arm64
- ppc64le
- s390x
- "386"
- arm
main_app: openspeedtest

View File

@ -93,7 +93,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,82 +1,85 @@
name: photoprism name: photoprism
services: services:
photoprism: photoprism:
environment: environment:
PHOTOPRISM_ADMIN_PASSWORD: casaos PHOTOPRISM_ADMIN_PASSWORD: casaos
PHOTOPRISM_UPLOAD_NSFW: "true" PHOTOPRISM_UPLOAD_NSFW: "true"
TZ: $TZ TZ: $TZ
image: photoprism/photoprism:latest image: photoprism/photoprism:221118-jammy
mem_reservation: "536870912" mem_reservation: "536870912"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 2342 - target: 2342
published: "2342" published: "2342"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/photoprism/storage source: /DATA/AppData/$AppID/photoprism/storage
target: /photoprism/storage target: /photoprism/storage
- type: bind - type: bind
source: /DATA/Gallery source: /DATA/Gallery
target: /photoprism/originals target: /photoprism/originals
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Gallery category: Gallery
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: basic
container: PHOTOPRISM_UPLOAD_NSFW
description:
en_US: true or false, is it possible to upload NSFW
- configurable: basic
container: PHOTOPRISM_ADMIN_PASSWORD
description:
en_US: The password of admin
index: /
port_map: "2342"
ports:
- configurable: advanced
container: "2342"
description:
en_US: WebUI HTTP Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /photoprism/storage
description:
en_US: PhotoPrism storage directory.
- configurable: advanced
container: /photoprism/originals
description:
en_US: PhotoPrism originals directory.
description: description:
en_US: PhotoPrism® is an AI-powered app for browsing, organizing & sharing your photo collection. It makes use of the latest technologies to tag and find pictures automatically without getting in your way. You can run it at home, on a private server, or in the cloud. en_US: TimeZone
developer: PhotoPrism - configurable: basic
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/PhotoPrism/icon.png container: PHOTOPRISM_UPLOAD_NSFW
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/PhotoPrism/screenshot-1.jpg en_US: true or false, is it possible to upload NSFW
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/PhotoPrism/screenshot-2.jpg - configurable: basic
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/PhotoPrism/screenshot-3.jpg container: PHOTOPRISM_ADMIN_PASSWORD
tagline: description:
en_US: Browsing, organizing & sharing your photo collection en_US: The password of admin
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/PhotoPrism/thumbnail.png index: /
tips: port_map: "2342"
before_install: ports:
- content: - configurable: advanced
en_US: Default Account container: "2342"
- content: description:
en_US: 'Username: ' en_US: WebUI HTTP Port
value: admin protocol: tcp
- content: shell: bash
en_US: 'Password: ' volumes:
value: casaos - configurable: "no"
title: container: /photoprism/storage
en_US: PhotoPrism description:
en_US: PhotoPrism storage directory.
- configurable: advanced
container: /photoprism/originals
description:
en_US: PhotoPrism originals directory.
description:
en_US: PhotoPrism® is an AI-powered app for browsing, organizing & sharing your photo collection. It makes use of the latest technologies to tag and find pictures automatically without getting in your way. You can run it at home, on a private server, or in the cloud.
developer: PhotoPrism
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/PhotoPrism/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/PhotoPrism/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/PhotoPrism/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/PhotoPrism/screenshot-3.jpg
tagline:
en_US: Browsing, organizing & sharing your photo collection
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/PhotoPrism/thumbnail.png
tips:
before_install:
- content:
en_US: Default Account
- content:
en_US: 'Username: '
value: admin
- content:
en_US: 'Password: '
value: casaos
title:
en_US: PhotoPrism
x-casaos: x-casaos:
main_app: photoprism architectures:
- amd64
- arm64
main_app: photoprism

View File

@ -130,7 +130,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,114 +1,119 @@
name: pihole name: pihole
services: services:
pihole: pihole:
environment: environment:
PROXY_LOCATION: pi.hole PROXY_LOCATION: pi.hole
TZ: $TZ TZ: $TZ
VIRTUAL_HOST: pi.hole VIRTUAL_HOST: pi.hole
WEBPASSWORD: casaos WEBPASSWORD: casaos
image: pihole/pihole:latest image: pihole/pihole:2023.02.2
mem_reservation: "268435456" mem_reservation: "268435456"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 80 - target: 80
published: "8800" published: "8800"
protocol: tcp protocol: tcp
- target: 53 - target: 53
published: "53" published: "53"
protocol: tcp protocol: tcp
- target: 53 - target: 53
published: "53" published: "53"
protocol: udp protocol: udp
- target: 67 - target: 67
published: "67" published: "67"
protocol: udp protocol: udp
- target: 547 - target: 547
published: "547" published: "547"
protocol: udp protocol: udp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/etc/pihole/ source: /DATA/AppData/$AppID/etc/pihole/
target: /etc/pihole target: /etc/pihole
- type: bind - type: bind
source: /DATA/AppData/$AppID/etc/dnsmasq.d/ source: /DATA/AppData/$AppID/etc/dnsmasq.d/
target: /etc/dnsmasq.d target: /etc/dnsmasq.d
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Network category: Network
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: basic
container: WEBPASSWORD
description:
en_US: Pi-hole admin password
- configurable: advanced
container: VIRTUAL_HOST
description:
en_US: Pi-hole Custom Hostname
- configurable: advanced
container: PROXY_LOCATION
description:
en_US: Pi-hole PROXY_LOCATION
index: /
port_map: "80"
ports:
- configurable: advanced
container: "80"
description:
en_US: WebUI HTTP Port
protocol: tcp
- configurable: "no"
container: "53"
description:
en_US: Pihole DNS port
protocol: tcp
- configurable: "no"
container: "53"
description:
en_US: Pihole DNS port
protocol: udp
- configurable: "no"
container: "67"
description:
en_US: Pihole DHCP IPv4 port
protocol: udp
- configurable: "no"
container: "547"
description:
en_US: Pihole DHCP IPv6 port
protocol: udp
shell: bash
volumes:
- configurable: "no"
container: /etc/pihole
description:
en_US: Pi-hole /etc/pihole directory.
- configurable: "no"
container: /etc/dnsmasq.d
description:
en_US: Pi-hole /etc/dnsmasq.d directory.
description: description:
en_US: Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. en_US: TimeZone
developer: Pi-hole - configurable: basic
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Pihole/icon.png container: WEBPASSWORD
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Pihole/screenshot-1.jpg en_US: Pi-hole admin password
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Pihole/screenshot-2.jpg - configurable: advanced
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Pihole/screenshot-3.jpg container: VIRTUAL_HOST
tagline: description:
en_US: Network-wide Ad Blocking en_US: Pi-hole Custom Hostname
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Pihole/thumbnail.jpg - configurable: advanced
tips: container: PROXY_LOCATION
before_install: description:
- content: en_US: Pi-hole PROXY_LOCATION
en_US: 'Default password: ' index: /admin
value: casaos port_map: "80"
title: ports:
en_US: Pi-hole - configurable: advanced
container: "80"
description:
en_US: WebUI HTTP Port
protocol: tcp
- configurable: "no"
container: "53"
description:
en_US: Pihole DNS port
protocol: tcp
- configurable: "no"
container: "53"
description:
en_US: Pihole DNS port
protocol: udp
- configurable: "no"
container: "67"
description:
en_US: Pihole DHCP IPv4 port
protocol: udp
- configurable: "no"
container: "547"
description:
en_US: Pihole DHCP IPv6 port
protocol: udp
shell: bash
volumes:
- configurable: "no"
container: /etc/pihole
description:
en_US: Pi-hole /etc/pihole directory.
- configurable: "no"
container: /etc/dnsmasq.d
description:
en_US: Pi-hole /etc/dnsmasq.d directory.
description:
en_US: Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.
developer: Pi-hole
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Pihole/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Pihole/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Pihole/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Pihole/screenshot-3.jpg
tagline:
en_US: Network-wide Ad Blocking
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Pihole/thumbnail.jpg
tips:
before_install:
- content:
en_US: 'Default password: '
value: casaos
title:
en_US: Pi-hole
x-casaos: x-casaos:
main_app: pihole architectures:
- amd64
- arm64
- "386"
- arm
main_app: pihole

View File

@ -99,7 +99,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,66 +1,70 @@
name: plex name: plex
services: services:
plex: plex:
devices: devices:
- /dev/dri:/dev/dri - /dev/dri:/dev/dri
- /dev/dvb:/dev/dvb - /dev/dvb:/dev/dvb
environment: environment:
PGID: $PGID PGID: $PGID
PUID: $PUID PUID: $PUID
VERSION: docker VERSION: docker
image: linuxserver/plex:latest image: linuxserver/plex:1.31.1
mem_reservation: "268435456" mem_reservation: "268435456"
network_mode: host network_mode: host
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Media source: /DATA/Media
target: /Media target: /Media
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: Run Plex as specified uid.
- configurable: "no"
container: PGID
description:
en_US: Run Plex as specified gid.
- configurable: "no"
container: VERSION
description:
en_US: Let Docker handle the Plex Version
index: /web/index.html
port_map: "32400"
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: Plex config directory.
- configurable: advanced
container: /Media
description:
en_US: Plex Media directory.
description: description:
en_US: Plex organizes video, music and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone Plex Media Server. has always been a top priority. Straightforward design and bulk actions mean getting things done faster. en_US: Run Plex as specified uid.
developer: Plex - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Plex/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Plex/screenshot-1.png en_US: Run Plex as specified gid.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Plex/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Plex/screenshot-3.png container: VERSION
tagline: description:
en_US: The home for all your entertainment. en_US: Let Docker handle the Plex Version
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Plex/thumbnail.png index: /web/index.html
tips: {} port_map: "32400"
title: shell: bash
en_US: Plex volumes:
- configurable: "no"
container: /config
description:
en_US: Plex config directory.
- configurable: advanced
container: /Media
description:
en_US: Plex Media directory.
description:
en_US: Plex organizes video, music and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone Plex Media Server. has always been a top priority. Straightforward design and bulk actions mean getting things done faster.
developer: Plex
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Plex/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Plex/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Plex/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Plex/screenshot-3.png
tagline:
en_US: The home for all your entertainment.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Plex/thumbnail.png
tips: {}
title:
en_US: Plex
x-casaos: x-casaos:
main_app: plex architectures:
- amd64
- arm
- arm64
main_app: plex

View File

@ -82,7 +82,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Prowlarr", "host_name": "Prowlarr",
"cmd": [] "cmd": []

View File

@ -61,4 +61,8 @@ services:
title: title:
en_US: Prowlarr en_US: Prowlarr
x-casaos: x-casaos:
architectures:
- amd64
- arm
- arm64
main_app: prowlarr main_app: prowlarr

View File

@ -103,7 +103,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,82 +1,86 @@
name: radarr name: radarr
services: services:
radarr: radarr:
environment: environment:
PGID: $PGID PGID: $PGID
PUID: $PUID PUID: $PUID
TZ: $TZ TZ: $TZ
image: linuxserver/radarr:latest image: linuxserver/radarr:4.3.2
mem_reservation: "268435456" mem_reservation: "268435456"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 7878 - target: 7878
published: "7878" published: "7878"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Media/Movies source: /DATA/Media/Movies
target: /movies target: /movies
- type: bind - type: bind
source: /DATA/Downloads source: /DATA/Downloads
target: /downloads target: /downloads
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: "no"
container: PUID
description:
en_US: Run Radarr as specified uid.
- configurable: "no"
container: PGID
description:
en_US: Run Radarr as specified gid.
index: /
port_map: "7878"
ports:
- configurable: advanced
container: "7878"
description:
en_US: WebUI HTTP Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: Radarr config directory.
- configurable: advanced
container: /movies
description:
en_US: Radarr movies directory.
- configurable: advanced
container: /downloads
description:
en_US: Radarr downloads directory.
description: description:
en_US: Radarr is a movie collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new movies and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available. Note that only one type of a given movie is supported. If you want both an 4k version and 1080p version of a given movie you will need multiple instances. en_US: TimeZone
developer: Radarr - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/icon.png container: PUID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/screenshot-1.jpg en_US: Run Radarr as specified uid.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/screenshot-2.jpg - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/screenshot-3.jpg container: PGID
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/screenshot-4.jpg description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/screenshot-5.jpg en_US: Run Radarr as specified gid.
tagline: index: /
en_US: The movie collection manager for Usenet and BitTorrent users port_map: "7878"
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/thumbnail.jpg ports:
tips: {} - configurable: advanced
title: container: "7878"
en_US: Radarr description:
en_US: WebUI HTTP Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: Radarr config directory.
- configurable: advanced
container: /movies
description:
en_US: Radarr movies directory.
- configurable: advanced
container: /downloads
description:
en_US: Radarr downloads directory.
description:
en_US: Radarr is a movie collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new movies and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available. Note that only one type of a given movie is supported. If you want both an 4k version and 1080p version of a given movie you will need multiple instances.
developer: Radarr
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/screenshot-3.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/screenshot-4.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/screenshot-5.jpg
tagline:
en_US: The movie collection manager for Usenet and BitTorrent users
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/thumbnail.jpg
tips: {}
title:
en_US: Radarr
x-casaos: x-casaos:
main_app: radarr architectures:
- amd64
- arm
- arm64
main_app: radarr

View File

@ -102,7 +102,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Readarr", "host_name": "Readarr",
"cmd": [] "cmd": []

View File

@ -77,4 +77,8 @@ services:
title: title:
en_US: Readarr en_US: Readarr
x-casaos: x-casaos:
architectures:
- amd64
- arm
- arm64
main_app: readarr main_app: readarr

View File

@ -105,7 +105,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Sabnzbd", "host_name": "Sabnzbd",
"cmd": [] "cmd": []

View File

@ -1,83 +1,87 @@
name: sabnzbd name: sabnzbd
services: services:
sabnzbd: sabnzbd:
environment: environment:
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/sabnzbd:latest image: linuxserver/sabnzbd:3.7.2
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8080 - target: 8080
published: "8080" published: "8080"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/Downloads source: /DATA/Downloads
target: /incomplete-downloads target: /incomplete-downloads
- type: bind - type: bind
source: /DATA/AppData/sabnzbd/config source: /DATA/AppData/sabnzbd/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Downloads source: /DATA/Downloads
target: /downloads target: /downloads
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
port_map: "8080"
ports:
- configurable: "no"
container: "8080"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /incomplete-downloads
description:
en_US: ""
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /downloads
description:
en_US: ""
description: description:
en_US: SABnzbd is an Open Source Binary Newsreader written in Python. It's totally free, easy to use, and works practically everywhere. SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction. SABnzbd offers an easy setup wizard and has self-analysis tools to verify your setup. en_US: ""
developer: Sabnzbd Team - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-3.png container: TZ
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-4.png description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-5.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-6.png port_map: "8080"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-7.png ports:
tagline: - configurable: "no"
en_US: Free and easy binary newsreader container: "8080"
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Readarr/thumbnail.png description:
tips: {} en_US: ""
title: protocol: tcp
en_US: Sabnzbd shell: sh
volumes:
- configurable: "no"
container: /incomplete-downloads
description:
en_US: ""
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /downloads
description:
en_US: ""
description:
en_US: SABnzbd is an Open Source Binary Newsreader written in Python. It's totally free, easy to use, and works practically everywhere. SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction. SABnzbd offers an easy setup wizard and has self-analysis tools to verify your setup.
developer: Sabnzbd Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-3.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-4.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-5.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-6.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sabnzbd/screenshot-7.png
tagline:
en_US: Free and easy binary newsreader
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Readarr/thumbnail.png
tips: {}
title:
en_US: Sabnzbd
x-casaos: x-casaos:
main_app: sabnzbd architectures:
- amd64
- arm
- arm64
main_app: sabnzbd

View File

@ -103,7 +103,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Sickchill", "host_name": "Sickchill",
"cmd": [] "cmd": []

View File

@ -1,82 +1,86 @@
name: sickchill name: sickchill
services: services:
sickchill: sickchill:
environment: environment:
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/sickchill:latest image: linuxserver/sickchill:2023.1.2
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8081 - target: 8081
published: "8081" published: "8081"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/sickchill/config source: /DATA/AppData/sickchill/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Downloads source: /DATA/Downloads
target: /downloads target: /downloads
- type: bind - type: bind
source: /DATA/Media/TV Shows source: /DATA/Media/TV Shows
target: /tv target: /tv
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
port_map: "8081"
ports:
- configurable: "no"
container: "8081"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /downloads
description:
en_US: ""
- configurable: "no"
container: /tv
description:
en_US: ""
description: description:
en_US: 'SickChill is an automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic: automatic torrent/nzb searching, downloading, and processing at the qualities you want.' en_US: ""
developer: Sickchill Team - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-3.png container: TZ
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-4.png description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-5.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-6.png port_map: "8081"
tagline: ports:
en_US: Automatic video library manager for TV Shows - configurable: "no"
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Readarr/thumbnail.png container: "8081"
tips: {} description:
title: en_US: ""
en_US: Sickchill protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /downloads
description:
en_US: ""
- configurable: "no"
container: /tv
description:
en_US: ""
description:
en_US: 'SickChill is an automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic: automatic torrent/nzb searching, downloading, and processing at the qualities you want.'
developer: Sickchill Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-3.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-4.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-5.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sickchill/screenshot-6.png
tagline:
en_US: Automatic video library manager for TV Shows
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Readarr/thumbnail.png
tips: {}
title:
en_US: Sickchill
x-casaos: x-casaos:
main_app: sickchill architectures:
- amd64
- arm
- arm64
main_app: sickchill

View File

@ -95,7 +95,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Smokeping", "host_name": "Smokeping",
"cmd": [] "cmd": []

View File

@ -1,74 +1,78 @@
name: smokeping name: smokeping
services: services:
smokeping: smokeping:
environment: environment:
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
TZ: Europe/London TZ: Europe/London
image: linuxserver/smokeping:latest image: linuxserver/smokeping:2.7.3
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 80 - target: 80
published: "80" published: "80"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/smokeping/config source: /DATA/AppData/smokeping/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/AppData/smokeping/data source: /DATA/AppData/smokeping/data
target: /data target: /data
x-casaos: x-casaos:
author: asaOS Team author: asaOS Team
category: Network category: Network
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
port_map: "80"
ports:
- configurable: "no"
container: "80"
description:
en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /data
description:
en_US: ""
description: description:
en_US: ' keeps track of your network latency.' en_US: ""
developer: Lazylibrarian Team - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/screenshot-3.png container: TZ
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/screenshot-4.png description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/screenshot-5.png en_US: ""
tagline: port_map: "80"
en_US: Free open source network performance monitoring tool ports:
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/thumbnail.png - configurable: "no"
tips: {} container: "80"
title: description:
en_US: Smokeping en_US: ""
protocol: tcp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
- configurable: "no"
container: /data
description:
en_US: ""
description:
en_US: ' keeps track of your network latency.'
developer: Lazylibrarian Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/screenshot-3.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/screenshot-4.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/screenshot-5.png
tagline:
en_US: Free open source network performance monitoring tool
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Smokeping/thumbnail.png
tips: {}
title:
en_US: Smokeping
x-casaos: x-casaos:
main_app: smokeping architectures:
- amd64
- arm
- arm64
main_app: smokeping

View File

@ -102,7 +102,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,81 +1,84 @@
name: sonarr name: sonarr
services: services:
sonarr: sonarr:
environment: environment:
PGID: $PGID PGID: $PGID
PUID: $PUID PUID: $PUID
TZ: $TZ TZ: $TZ
image: linuxserver/sonarr:latest image: linuxserver/sonarr:3.0.10
mem_reservation: "268435456" mem_reservation: "268435456"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8989 - target: 8989
published: "8989" published: "8989"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
- type: bind - type: bind
source: /DATA/Media/TV Shows source: /DATA/Media/TV Shows
target: /tv target: /tv
- type: bind - type: bind
source: /DATA/Downloads source: /DATA/Downloads
target: /downloads target: /downloads
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Media category: Media
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: "no"
container: PUID
description:
en_US: Run Sonarr as specified uid.
- configurable: "no"
container: PGID
description:
en_US: Run Sonarr as specified gid.
index: /
port_map: "8989"
ports:
- configurable: advanced
container: "8989"
description:
en_US: WebUI HTTP Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: Sonarr config directory.
- configurable: advanced
container: /tv
description:
en_US: Sonarr tv directory.
- configurable: advanced
container: /downloads
description:
en_US: Sonarr downloads directory.
description: description:
en_US: Sonarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. en_US: TimeZone
developer: Sonarr - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sonarr/icon.png container: PUID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sonarr/screenshot-1.jpg en_US: Run Sonarr as specified uid.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sonarr/screenshot-2.jpg - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sonarr/screenshot-3.jpg container: PGID
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sonarr/screenshot-4.jpg description:
tagline: en_US: Run Sonarr as specified gid.
en_US: The PVR for Usenet and BitTorrent users index: /
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/thumbnail.jpg port_map: "8989"
tips: {} ports:
title: - configurable: advanced
en_US: Sonarr container: "8989"
description:
en_US: WebUI HTTP Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: Sonarr config directory.
- configurable: advanced
container: /tv
description:
en_US: Sonarr tv directory.
- configurable: advanced
container: /downloads
description:
en_US: Sonarr downloads directory.
description:
en_US: Sonarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.
developer: Sonarr
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sonarr/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sonarr/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sonarr/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sonarr/screenshot-3.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Sonarr/screenshot-4.jpg
tagline:
en_US: The PVR for Usenet and BitTorrent users
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Radarr/thumbnail.jpg
tips: {}
title:
en_US: Sonarr
x-casaos: x-casaos:
main_app: sonarr architectures:
- amd64
- arm64
main_app: sonarr

View File

@ -113,7 +113,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,93 +1,97 @@
name: syncthing name: syncthing
services: services:
syncthing: syncthing:
environment: environment:
PGID: $PGID PGID: $PGID
PUID: $PUID PUID: $PUID
TZ: $TZ TZ: $TZ
image: linuxserver/syncthing:latest image: linuxserver/syncthing:1.23.1
mem_reservation: "268435456" mem_reservation: "268435456"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8384 - target: 8384
published: "8384" published: "8384"
protocol: tcp protocol: tcp
- target: 22000 - target: 22000
published: "22000" published: "22000"
protocol: tcp protocol: tcp
- target: 22000 - target: 22000
published: "22000" published: "22000"
protocol: udp protocol: udp
- target: 21027 - target: 21027
published: "21027" published: "21027"
protocol: udp protocol: udp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
- type: bind - type: bind
source: /DATA source: /DATA
target: /DATA target: /DATA
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Backup category: Backup
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: "no"
container: PUID
description:
en_US: Run Syncthing as specified uid.
- configurable: "no"
container: PGID
description:
en_US: Run Syncthing as specified gid.
index: /
port_map: "8384"
ports:
- configurable: advanced
container: "8384"
description:
en_US: WebUI HTTP Port
protocol: tcp
- configurable: "no"
container: "22000"
description:
en_US: Syncthing listening Port (TCP)
protocol: tcp
- configurable: "no"
container: "22000"
description:
en_US: Syncthing listening Port (UDP)
protocol: udp
- configurable: "no"
container: "21027"
description:
en_US: Syncthing protocol discovery Port (TCP)
protocol: udp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: Syncthing config directory.
- configurable: advanced
container: /DATA
description:
en_US: Syncthing Accessible Directory.
description: description:
en_US: Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes. Your data is your data alone and you deserve to choose where it is stored, whether it is shared with some third party, and how it's transmitted over the internet. en_US: TimeZone
developer: Syncthing - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Syncthing/icon.png container: PUID
tagline: description:
en_US: Free, secure, and distributed file synchronisation tool. en_US: Run Syncthing as specified uid.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/thumbnail.jpg - configurable: "no"
tips: {} container: PGID
title: description:
en_US: Syncthing en_US: Run Syncthing as specified gid.
index: /
port_map: "8384"
ports:
- configurable: advanced
container: "8384"
description:
en_US: WebUI HTTP Port
protocol: tcp
- configurable: "no"
container: "22000"
description:
en_US: Syncthing listening Port (TCP)
protocol: tcp
- configurable: "no"
container: "22000"
description:
en_US: Syncthing listening Port (UDP)
protocol: udp
- configurable: "no"
container: "21027"
description:
en_US: Syncthing protocol discovery Port (TCP)
protocol: udp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: Syncthing config directory.
- configurable: advanced
container: /DATA
description:
en_US: Syncthing Accessible Directory.
description:
en_US: Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes. Your data is your data alone and you deserve to choose where it is stored, whether it is shared with some third party, and how it's transmitted over the internet.
developer: Syncthing
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Syncthing/icon.png
tagline:
en_US: Free, secure, and distributed file synchronisation tool.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Jellyfin/thumbnail.jpg
tips: {}
title:
en_US: Syncthing
x-casaos: x-casaos:
main_app: syncthing architectures:
- amd64
- arm
- arm64
main_app: syncthing

View File

@ -0,0 +1,87 @@
name: tailscale-daemon
services:
tailscale-daemon:
cap_add:
- net_admin
- sys_module
environment:
TS_AUTH_ONCE: "true"
TS_EXTRA_ARGS: --hostname casaos
TS_STATE_DIR: /var/lib/tailscale
image: tailscale/tailscale:v1.36.2
mem_reservation: "67108864"
network_mode: host
privileged: true
restart: unless-stopped
volumes:
- type: bind
source: /dev/net/tun
target: /dev/net/tun
- type: bind
source: /var/lib
target: /var/lib
- type: bind
source: /DATA/AppData/$AppID/config
target: /var/lib/tailscale
x-casaos:
author: EzyoStudio
category: Network
container:
envs:
- configurable: advanced
container: TS_AUTH_ONCE
description:
en_US: if true, only attempt to log in if not already logged in. If false, forcibly log in every time the container starts.
- configurable: advanced
container: TS_EXTRA_ARGS
description:
en_US: extra arguments to 'tailscale up'.
- configurable: advanced
container: TS_STATE_DIR
description:
en_US: the directory in which to store tailscaled state. The data should persist across container restarts.
port_map: "80"
shell: sh
volumes:
- configurable: "no"
container: /dev/net/tun
description:
en_US: ""
- configurable: "no"
container: /var/lib
description:
en_US: ""
- configurable: "no"
container: /var/lib/tailscale
description:
en_US: ""
description:
en_US: Tailscale lets you easily manage access to private resources, quickly SSH into devices on your network, and work securely from anywhere in the world.
developer: Tailscale
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/TailscaleDaemon/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/TailscaleDaemon/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/TailscaleDaemon/screenshot-2.jpg
tagline:
en_US: Connect your devices and users together in your own secure virtual private network.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/TailscaleDaemon/thumbnail.jpg
tips:
before_install:
- content:
en_US: 'Tailscale hostname: '
value: casaos
- content:
en_US: ""
- content:
en_US: 'After install:'
- content:
en_US: Go to the container log and connect to your tailscale account using the link provided
title:
en_US: Tailscale Daemon
x-casaos:
architectures:
- arm64
- arm
- "386"
- amd64
main_app: tailscale-daemon

View File

@ -85,7 +85,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "Tautulli", "host_name": "Tautulli",
"cmd": [] "cmd": []

View File

@ -0,0 +1,70 @@
name: tautulli
services:
tautulli:
environment:
PGID: "1000"
PUID: "1000"
TZ: Europe/London
image: linuxserver/tautulli:2.11.1
mem_reservation: "67108864"
network_mode: bridge
ports:
- target: 8181
published: "8181"
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/$AppID/config
target: /config
x-casaos:
author: Triskae
category: Media
container:
envs:
- configurable: "no"
container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: TZ
description:
en_US: ""
index: /
port_map: "8181"
ports:
- configurable: "no"
container: "8181"
description:
en_US: ""
protocol: ""
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
description:
en_US: Tautulli is a 3rd party application that you can run alongside your Plex Media Server to monitor activity and track various statistics.
developer: Tautulli Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Tautulli/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Tautulli/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Tautulli/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Tautulli/screenshot-3.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Tautulli/screenshot-4.png
tagline:
en_US: Monitor your Plex Media Server and much more.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Tautulli/thumbnail.png
tips: {}
title:
en_US: Tautulli
x-casaos:
architectures:
- amd64
- arm
- arm64
main_app: tautulli

View File

@ -141,7 +141,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -120,4 +120,8 @@ services:
title: title:
en_US: Transmission en_US: Transmission
x-casaos: x-casaos:
architectures:
- amd64
- arm
- arm64
main_app: transmission main_app: transmission

View File

@ -155,7 +155,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [], "labels": [],
"host_name": "", "host_name": "",
"cmd": [] "cmd": []

View File

@ -1,135 +1,138 @@
name: unifi-controller name: unifi-controller
services: services:
unifi-controller: unifi-controller:
environment: environment:
MEM_LIMIT: "1024" MEM_LIMIT: "1024"
MEM_STARTUP: "1024" MEM_STARTUP: "1024"
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
image: linuxserver/unifi-controller:7.0.25 image: linuxserver/unifi-controller:7.3.83
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 3478 - target: 3478
published: "3478" published: "3478"
protocol: udp protocol: udp
- target: 10001 - target: 10001
published: "10001" published: "10001"
protocol: udp protocol: udp
- target: 8080 - target: 8080
published: "8080" published: "8080"
protocol: tcp protocol: tcp
- target: 8443 - target: 8443
published: "8443" published: "8443"
protocol: tcp protocol: tcp
- target: 1900 - target: 1900
published: "1900" published: "1900"
protocol: udp protocol: udp
- target: 8843 - target: 8843
published: "8843" published: "8843"
protocol: tcp protocol: tcp
- target: 8880 - target: 8880
published: "8880" published: "8880"
protocol: tcp protocol: tcp
- target: 6789 - target: 6789
published: "6789" published: "6789"
protocol: tcp protocol: tcp
- target: 5514 - target: 5514
published: "5514" published: "5514"
protocol: udp protocol: udp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Network category: Network
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: PUID container: PUID
description:
en_US: ""
- configurable: "no"
container: PGID
description:
en_US: ""
- configurable: "no"
container: MEM_LIMIT
description:
en_US: ""
- configurable: "no"
container: MEM_STARTUP
description:
en_US: ""
index: /
port_map: "8080"
ports:
- configurable: "no"
container: "3478"
description:
en_US: ""
protocol: udp
- configurable: "no"
container: "10001"
description:
en_US: ""
protocol: udp
- configurable: "no"
container: "8080"
description:
en_US: ""
protocol: tcp
- configurable: "no"
container: "8443"
description:
en_US: ""
protocol: tcp
- configurable: "no"
container: "1900"
description:
en_US: ""
protocol: udp
- configurable: "no"
container: "8843"
description:
en_US: ""
protocol: tcp
- configurable: "no"
container: "8880"
description:
en_US: ""
protocol: tcp
- configurable: "no"
container: "6789"
description:
en_US: ""
protocol: tcp
- configurable: "no"
container: "5514"
description:
en_US: ""
protocol: udp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
description: description:
en_US: For Unifi to adopt other devices, e.g. an Access Point, it is required to change the inform IP address. Because Unifi runs inside Docker by default it uses an IP address not accessible by other devices. To change this go to Settings > System Settings > Controller Configuration and set the Controller Hostname/IP to a hostname or IP address accessible by your devices. Additionally the checkbox "Override inform host with controller hostname/IP" has to be checked, so that devices can connect to the controller during adoption (devices use the inform-endpoint during adoption). en_US: ""
developer: LinuxServer.io - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Unifi-controller/icon.png container: PGID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Unifi-controller/screenshot-1.png en_US: ""
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Unifi-controller/screenshot-2.png - configurable: "no"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Unifi-controller/screenshot-3.png container: MEM_LIMIT
tagline: description:
en_US: The Unifi-controller software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance. en_US: ""
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Unifi-controller/thumbnail.png - configurable: "no"
tips: {} container: MEM_STARTUP
title: description:
en_US: Unifi-controller en_US: ""
index: /
port_map: "8080"
ports:
- configurable: "no"
container: "3478"
description:
en_US: ""
protocol: udp
- configurable: "no"
container: "10001"
description:
en_US: ""
protocol: udp
- configurable: "no"
container: "8080"
description:
en_US: ""
protocol: tcp
- configurable: "no"
container: "8443"
description:
en_US: ""
protocol: tcp
- configurable: "no"
container: "1900"
description:
en_US: ""
protocol: udp
- configurable: "no"
container: "8843"
description:
en_US: ""
protocol: tcp
- configurable: "no"
container: "8880"
description:
en_US: ""
protocol: tcp
- configurable: "no"
container: "6789"
description:
en_US: ""
protocol: tcp
- configurable: "no"
container: "5514"
description:
en_US: ""
protocol: udp
shell: sh
volumes:
- configurable: "no"
container: /config
description:
en_US: ""
description:
en_US: For Unifi to adopt other devices, e.g. an Access Point, it is required to change the inform IP address. Because Unifi runs inside Docker by default it uses an IP address not accessible by other devices. To change this go to Settings > System Settings > Controller Configuration and set the Controller Hostname/IP to a hostname or IP address accessible by your devices. Additionally the checkbox "Override inform host with controller hostname/IP" has to be checked, so that devices can connect to the controller during adoption (devices use the inform-endpoint during adoption).
developer: LinuxServer.io
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Unifi-controller/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Unifi-controller/screenshot-1.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Unifi-controller/screenshot-2.png
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Unifi-controller/screenshot-3.png
tagline:
en_US: The Unifi-controller software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Unifi-controller/thumbnail.png
tips: {}
title:
en_US: Unifi-controller
x-casaos: x-casaos:
main_app: unifi-controller architectures:
- amd64
- arm64
main_app: unifi-controller

View File

@ -68,7 +68,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,51 +1,55 @@
name: uptimekuma name: uptimekuma
services: services:
uptimekuma: uptimekuma:
image: louislam/uptime-kuma:1-alpine image: louislam/uptime-kuma:1.20.2-alpine
mem_reservation: "134217728" mem_reservation: "134217728"
network_mode: bridge network_mode: bridge
ports:
- target: 3001
published: "3001"
protocol: tcp
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/$AppID/app/data
target: /app/data
x-casaos:
author: CasaOS Team
category: Network
container:
index: /
port_map: "3001"
ports: ports:
- target: 3001 - configurable: advanced
published: "3001" container: "3001"
protocol: tcp
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/$AppID/app/data
target: /app/data
x-casaos:
author: CasaOS Team
category: Network
container:
index: /
port_map: "3001"
ports:
- configurable: advanced
container: "3001"
description:
en_US: WebUI Port
protocol: tcp
shell: sh
volumes:
- configurable: advanced
container: /app/data
description:
en_US: Uptime Kuma data directory.
description: description:
en_US: It is a self-hosted monitoring tool like "Uptime Robot". en_US: WebUI Port
developer: Louis Lam protocol: tcp
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/icon.png shell: sh
screenshot_link: volumes:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/screenshot-1.jpg - configurable: advanced
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/screenshot-2.jpg container: /app/data
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/screenshot-3.jpg description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/screenshot-4.jpg en_US: Uptime Kuma data directory.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/screenshot-5.jpg description:
tagline: en_US: It is a self-hosted monitoring tool like "Uptime Robot".
en_US: A fancy monitoring tool developer: Louis Lam
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/thumbnail.png icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/icon.png
tips: {} screenshot_link:
title: - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/screenshot-1.jpg
en_US: Uptime Kuma - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/screenshot-3.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/screenshot-4.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/screenshot-5.jpg
tagline:
en_US: A fancy monitoring tool
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/UptimeKuma/thumbnail.png
tips: {}
title:
en_US: Uptime Kuma
x-casaos: x-casaos:
main_app: uptimekuma architectures:
- amd64
- arm64
- arm
main_app: uptimekuma

View File

@ -65,7 +65,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -46,4 +46,8 @@ services:
title: title:
en_US: Vaultwarden en_US: Vaultwarden
x-casaos: x-casaos:
architectures:
- amd64
- arm
- arm64
main_app: vaultwarden main_app: vaultwarden

View File

@ -75,7 +75,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,58 +1,60 @@
name: vocechat name: vocechat
services: services:
vocechat: vocechat:
environment: environment:
TZ: $TZ TZ: $TZ
image: privoce/vocechat-server image: privoce/vocechat-server:v0.3.23
mem_reservation: "67108864" mem_reservation: "67108864"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 3000 - target: 3000
published: "3009" published: "3009"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/db source: /DATA/AppData/$AppID/home/vocechat-server/data
target: /db target: /home/vocechat-server/data
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Chat category: Chat
container: container:
envs: envs:
- configurable: "yes" - configurable: "yes"
container: TZ container: TZ
description:
en_US: TimeZone
index: /
port_map: "3009"
ports:
- configurable: advanced
container: "3000"
description:
en_US: WebUI HTTP Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /db
description:
en_US: VoceChat DB
description: description:
en_US: As a top alternative to centralized chat services, Voce chat is a superlight Rust powered open-core chat app that prioritizes private hosting. en_US: TimeZone
developer: Privoce index: /
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/icon.png port_map: "3000"
screenshot_link: ports:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/screenshot-1.jpg - configurable: advanced
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/screenshot-2.jpg container: "3000"
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/screenshot-3.jpg description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/screenshot-4.jpg en_US: WebUI HTTP Port
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/screenshot-5.jpg protocol: tcp
tagline: shell: bash
en_US: Have a Private Social Space Hosted on Your Site volumes:
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/thumbnail.jpg - configurable: "no"
tips: {} container: /home/vocechat-server/data
title: description:
en_US: VoceChat en_US: VoceChat Data
description:
en_US: As a top alternative to centralized chat services, Voce chat is a superlight Rust powered open-core chat app that prioritizes private hosting.
developer: Privoce
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/screenshot-1.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/screenshot-2.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/screenshot-3.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/screenshot-4.jpg
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/screenshot-5.jpg
tagline:
en_US: Have a Private Social Space Hosted on Your Site
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/VoceChat/thumbnail.jpg
tips: {}
title:
en_US: VoceChat
x-casaos: x-casaos:
main_app: vocechat architectures:
- amd64
main_app: vocechat

View File

@ -98,7 +98,7 @@
}, },
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"sysctls": [], "sysctls": [],
"cap_add": {}, "cap_add": [],
"labels": [] "labels": []
}, },
"abilities": { "abilities": {

View File

@ -1,103 +1,106 @@
name: qbittorrent name: qbittorrent
services: services:
qbittorrent: qbittorrent:
environment: environment:
PGID: $PGID PGID: $PGID
PUID: $PUID PUID: $PUID
TZ: $TZ TZ: $TZ
UMASK: "002" UMASK: "002"
image: hotio/qbittorrent:latest image: hotio/qbittorrent:release-4.5.2
mem_reservation: "268435456" mem_reservation: "268435456"
network_mode: bridge network_mode: bridge
ports: ports:
- target: 8080 - target: 8080
published: "8080" published: "8080"
protocol: tcp protocol: tcp
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- type: bind - type: bind
source: /DATA/AppData/$AppID/config source: /DATA/AppData/$AppID/config
target: /config target: /config
- type: bind - type: bind
source: /DATA source: /DATA
target: /DATA target: /DATA
x-casaos: x-casaos:
author: CasaOS Team author: CasaOS Team
category: Downloader category: Downloader
container: container:
envs: envs:
- configurable: "no" - configurable: "no"
container: TZ container: TZ
description:
en_US: TimeZone
- configurable: "no"
container: PUID
description:
en_US: Run qBittorrent as specified uid.
- configurable: "no"
container: PGID
description:
en_US: Run qBittorrent as specified gid.
- configurable: "no"
container: UMASK
description:
en_US: Run qBittorrent as specified UMASK.
index: /
port_map: "8080"
ports:
- configurable: advanced
container: "8080"
description:
en_US: WebUI HTTP Port
protocol: tcp
shell: bash
volumes:
- configurable: "no"
container: /config
description:
en_US: qBittorrent config directory.
- configurable: advanced
container: /DATA
description:
en_US: qBittorrent Accessible directory.
description: description:
en_US: The qBittorrent project aims to provide an open-source software alternative to µTorrent. en_US: TimeZone
developer: qBittorrent - configurable: "no"
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/qBittorrent/icon.png container: PUID
screenshot_link: description:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/qBittorrent/screenshot-1.jpg en_US: Run qBittorrent as specified uid.
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/qBittorrent/screenshot-2.jpg - configurable: "no"
tagline: container: PGID
en_US: Free BitTorrent downloader description:
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/qBittorrent/thumbnail.jpg en_US: Run qBittorrent as specified gid.
tips: - configurable: "no"
before_install: container: UMASK
- content: description:
en_US: Default Account en_US: Run qBittorrent as specified UMASK.
- content: index: /
en_US: 'Username: ' port_map: "8080"
value: admin ports:
- content: - configurable: advanced
en_US: 'Password: ' container: "8080"
value: adminadmin description:
- content: en_US: WebUI HTTP Port
en_US: "" protocol: tcp
- content: shell: bash
en_US: Default Accessible Path in qBittorrent volumes:
- content: - configurable: "no"
en_US: 'DATA Path: ' container: /config
value: /DATA description:
- content: en_US: qBittorrent config directory.
en_US: 'Downloads Path: ' - configurable: advanced
value: /DATA/Downloads container: /DATA
- content: description:
en_US: 'Media Path: ' en_US: qBittorrent Accessible directory.
value: /DATA/Media description:
- content: en_US: The qBittorrent project aims to provide an open-source software alternative to µTorrent.
en_US: The paths of other DATA subdirectories in CasaOS are also similar. developer: qBittorrent
- content: icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/qBittorrent/icon.png
en_US: Please make sure you use the correct path when using qBittorrent. screenshot_link:
title: - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/qBittorrent/screenshot-1.jpg
en_US: qBittorrent - https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/qBittorrent/screenshot-2.jpg
tagline:
en_US: Free BitTorrent downloader
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/qBittorrent/thumbnail.jpg
tips:
before_install:
- content:
en_US: Default Account
- content:
en_US: 'Username: '
value: admin
- content:
en_US: 'Password: '
value: adminadmin
- content:
en_US: ""
- content:
en_US: Default Accessible Path in qBittorrent
- content:
en_US: 'DATA Path: '
value: /DATA
- content:
en_US: 'Downloads Path: '
value: /DATA/Downloads
- content:
en_US: 'Media Path: '
value: /DATA/Media
- content:
en_US: The paths of other DATA subdirectories in CasaOS are also similar.
- content:
en_US: Please make sure you use the correct path when using qBittorrent.
title:
en_US: qBittorrent
x-casaos: x-casaos:
main_app: qbittorrent architectures:
- amd64
- arm64
main_app: qbittorrent