Robert Middleswarth 2 years ago
parent
commit
59fd4cfe13
3 changed files with 49 additions and 0 deletions
  1. BIN
      images/nitter.png
  2. 27 0
      stack/nitter.yml
  3. 22 0
      template/apps/nitter.json

BIN
images/nitter.png


+ 27 - 0
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

+ 22 - 0
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/"
+}