diff --git a/docs/AppList.md b/docs/AppList.md
index dee6291..770aba0 100644
--- a/docs/AppList.md
+++ b/docs/AppList.md
@@ -2,10 +2,10 @@
List of all apps included in this project with info related to it.
-- **Arm32:** 163 apps
-- **Arm64:** 172 apps
-- **Amd64:** 170 apps
-- **Total:** 172 apps
+- **Arm32:** 164 apps
+- **Arm64:** 173 apps
+- **Amd64:** 171 apps
+- **Total:** 173 apps
---
@@ -108,6 +108,7 @@ List of all apps included in this project with info related to it.
|[Nginx Proxy Manager v2 with Mysql [DEPRECATED]](https://nginxproxymanager.com/)|Arm32
Arm64
Amd64|Stack| [](https://nginxproxymanager.com/setup/#using-mysql-mariadb-database) | [](../docs/nginx_proxy_manager.md) | [](../tools/nginx-proxy-manager.sh) | | [](https://www.youtube.com/watch?v=yl2Laxbqvo8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=10) |
|[Nginx Proxy Manager v2 with Sqlite and Goaccess Charts](https://nginxproxymanager.com/)|Arm32
Arm64
Amd64|Stack| [](https://nginxproxymanager.com/setup/#running-the-app) | [](../docs/nginx_proxy_manager.md) | | | [](https://www.youtube.com/watch?v=yl2Laxbqvo8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=10) |
|[Nginx Proxy Manager v2 with Sqllite](https://nginxproxymanager.com/)|Arm32
Arm64
Amd64|Container| [](https://nginxproxymanager.com/setup/) | [](../docs/nginx_proxy_manager.md) | | | [](https://www.youtube.com/watch?v=yl2Laxbqvo8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=10) |
+|[Nitter](https://nitter.net/)|Arm32
Arm64
Amd64|Stack| [](https://github.com/zedeus/nitter) | | | | |
|[Node Red](https://nodered.org/)|Arm32
Arm64
Amd64|Stack| [](https://nodered.org/docs/getting-started/docker) | | | | |
|[NUT Server](https://networkupstools.org)|Arm32
Arm64
Amd64|Container| [](https://hub.docker.com/r/instantlinux/nut-upsd) | | | | |
|[NZBGet](https://nzbget.net/)|Arm32
Arm64
Amd64|Container| [](https://docs.linuxserver.io/images/docker-nzbget) | | | | |
diff --git a/images/nitter.png b/images/nitter.png
new file mode 100644
index 0000000..24caa27
Binary files /dev/null and b/images/nitter.png differ
diff --git a/pi-hosted_template/template/portainer-v2.json b/pi-hosted_template/template/portainer-v2.json
index fd2c944..fc21904 100644
--- a/pi-hosted_template/template/portainer-v2.json
+++ b/pi-hosted_template/template/portainer-v2.json
@@ -3952,6 +3952,25 @@
],
"note": "
Template created by Pi-Hosted Series
Check our Github page: https://github.com/pi-hosted/pi-hosted
Official Webpage: https://nginxproxymanager.com/
Official Docker Documentation: https://nginxproxymanager.com/setup/
Pi-Hosted dedicated documentation: nginx_proxy_manager.md
Youtube Video: Installing Nginx Proxy Manager on Docker
"
},
+ {
+ "categories": [
+ "Other",
+ "Tools",
+ "Web"
+ ],
+ "description": "A free and open source alternative Twitter front-end focused on privacy and performance.",
+ "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nitter.png",
+ "name": "nitter",
+ "repository": {
+ "stackfile": "stack/nitter.yml",
+ "url": "https://github.com/pi-hosted/pi-hosted/"
+ },
+ "platform": "linux",
+ "restart_policy": "unless-stopped",
+ "title": "Nitter",
+ "type": 3,
+ "note": "Template created by Pi-Hosted Series
Check our Github page: https://github.com/pi-hosted/pi-hosted
Official Webpage: https://nitter.net/
Official Docker Documentation: https://github.com/zedeus/nitter
"
+ },
{
"categories": [
"Other",
diff --git a/stack/nitter.yml b/stack/nitter.yml
new file mode 100644
index 0000000..9cea586
--- /dev/null
+++ b/stack/nitter.yml
@@ -0,0 +1,27 @@
+version: "3"
+
+services:
+
+ nitter:
+ image: quay.io/unixfox/nitter:latest
+ container_name: nitter
+ networks:
+ - paperless_network
+ restart: unless-stopped
+ depends_on:
+ - redis
+ volumes:
+ - /portainer/Files/AppData/Config/nitter/data:/data
+ ports:
+ - 3300:8080
+ environment:
+ - REDIS_HOST="redis"
+
+ redis:
+ image: redis:alpine
+ container_name: redis
+ networks:
+ - paperless_network
+ restart: unless-stopped
+ volumes:
+ - /portainer/Files/AppData/Config/nitter/redis:/data
diff --git a/template/apps/nitter.json b/template/apps/nitter.json
new file mode 100644
index 0000000..2466756
--- /dev/null
+++ b/template/apps/nitter.json
@@ -0,0 +1,22 @@
+{
+ "categories": [
+ "Other",
+ "Tools",
+ "Web"
+ ],
+ "description": "A free and open source alternative Twitter front-end focused on privacy and performance.",
+ "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nitter.png",
+ "name": "nitter",
+ "officialDoc": "https://github.com/zedeus/nitter",
+ "repository": {
+ "stackfile_arm32": "stack/nitter.yml",
+ "stackfile_arm64": "stack/nitter.yml",
+ "stackfile_amd64": "stack/nitter.yml",
+ "url": "https://github.com/pi-hosted/pi-hosted/"
+ },
+ "platform": "linux",
+ "restart_policy": "unless-stopped",
+ "title": "Nitter",
+ "type": 3,
+ "webpage": "https://nitter.net/"
+}
diff --git a/template/portainer-v2-amd64.json b/template/portainer-v2-amd64.json
index 493fd9a..1c97e03 100644
--- a/template/portainer-v2-amd64.json
+++ b/template/portainer-v2-amd64.json
@@ -4302,6 +4302,25 @@
],
"note": "Template created by Pi-Hosted Series
Check our Github page: https://github.com/pi-hosted/pi-hosted
Official Webpage: https://nginxproxymanager.com/
Official Docker Documentation: https://nginxproxymanager.com/setup/
Pi-Hosted dedicated documentation: nginx_proxy_manager.md
Youtube Video: Installing Nginx Proxy Manager on Docker
"
},
+ {
+ "categories": [
+ "Other",
+ "Tools",
+ "Web"
+ ],
+ "description": "A free and open source alternative Twitter front-end focused on privacy and performance.",
+ "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nitter.png",
+ "name": "nitter",
+ "repository": {
+ "stackfile": "stack/nitter.yml",
+ "url": "https://github.com/pi-hosted/pi-hosted/"
+ },
+ "platform": "linux",
+ "restart_policy": "unless-stopped",
+ "title": "Nitter",
+ "type": 3,
+ "note": "Template created by Pi-Hosted Series
Check our Github page: https://github.com/pi-hosted/pi-hosted
Official Webpage: https://nitter.net/
Official Docker Documentation: https://github.com/zedeus/nitter
"
+ },
{
"categories": [
"Other",
diff --git a/template/portainer-v2-arm32.json b/template/portainer-v2-arm32.json
index fd2c944..fc21904 100644
--- a/template/portainer-v2-arm32.json
+++ b/template/portainer-v2-arm32.json
@@ -3952,6 +3952,25 @@
],
"note": "Template created by Pi-Hosted Series
Check our Github page: https://github.com/pi-hosted/pi-hosted
Official Webpage: https://nginxproxymanager.com/
Official Docker Documentation: https://nginxproxymanager.com/setup/
Pi-Hosted dedicated documentation: nginx_proxy_manager.md
Youtube Video: Installing Nginx Proxy Manager on Docker
"
},
+ {
+ "categories": [
+ "Other",
+ "Tools",
+ "Web"
+ ],
+ "description": "A free and open source alternative Twitter front-end focused on privacy and performance.",
+ "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nitter.png",
+ "name": "nitter",
+ "repository": {
+ "stackfile": "stack/nitter.yml",
+ "url": "https://github.com/pi-hosted/pi-hosted/"
+ },
+ "platform": "linux",
+ "restart_policy": "unless-stopped",
+ "title": "Nitter",
+ "type": 3,
+ "note": "Template created by Pi-Hosted Series
Check our Github page: https://github.com/pi-hosted/pi-hosted
Official Webpage: https://nitter.net/
Official Docker Documentation: https://github.com/zedeus/nitter
"
+ },
{
"categories": [
"Other",
diff --git a/template/portainer-v2-arm64.json b/template/portainer-v2-arm64.json
index c3f99c4..3dc8a35 100644
--- a/template/portainer-v2-arm64.json
+++ b/template/portainer-v2-arm64.json
@@ -4341,6 +4341,25 @@
],
"note": "Template created by Pi-Hosted Series
Check our Github page: https://github.com/pi-hosted/pi-hosted
Official Webpage: https://nginxproxymanager.com/
Official Docker Documentation: https://nginxproxymanager.com/setup/
Pi-Hosted dedicated documentation: nginx_proxy_manager.md
Youtube Video: Installing Nginx Proxy Manager on Docker
"
},
+ {
+ "categories": [
+ "Other",
+ "Tools",
+ "Web"
+ ],
+ "description": "A free and open source alternative Twitter front-end focused on privacy and performance.",
+ "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nitter.png",
+ "name": "nitter",
+ "repository": {
+ "stackfile": "stack/nitter.yml",
+ "url": "https://github.com/pi-hosted/pi-hosted/"
+ },
+ "platform": "linux",
+ "restart_policy": "unless-stopped",
+ "title": "Nitter",
+ "type": 3,
+ "note": "Template created by Pi-Hosted Series
Check our Github page: https://github.com/pi-hosted/pi-hosted
Official Webpage: https://nitter.net/
Official Docker Documentation: https://github.com/zedeus/nitter
"
+ },
{
"categories": [
"Other",
diff --git a/tools/update_libseccomp2.sh b/tools/update_libseccomp2.sh
index 0cec012..5fb7251 100755
--- a/tools/update_libseccomp2.sh
+++ b/tools/update_libseccomp2.sh
@@ -19,6 +19,6 @@ check_internet
echo "Libseccomp2 upgrade needed if you run rpi 32bit. Check version with 'dpkg-query -W libseccomp'. if the version is 2.3 or below, this script is necessary."
wget http://ftp.us.debian.org/debian/pool/main/libs/libseccomp/libseccomp2_2.5.4-1+b1_armhf.deb || error "Failed to download libseccomp2.deb"
-sudo dpkg -i libseccomp2_2.5.4-1_armhf.deb || error "Failed to install libseccomp2.deb"
-rm -f libseccomp2_2.5.4-1_armhf.deb
+sudo dpkg -i libseccomp2_2.5.4-1+b1_armhf.deb || error "Failed to install libseccomp2.deb"
+rm -f libseccomp2_2.5.4-1+b1_armhf.deb
echo "Updating the libseccomp2 file is complete."