chore(teddit): fixed version + logo update

This commit is contained in:
Nicolas Meienberger 2022-09-10 12:37:04 +02:00
parent 3299baf815
commit b9cac7e34c
5 changed files with 4 additions and 44 deletions

View File

@ -40,6 +40,7 @@ This is the official repository for the Tipi App Store. It contains all the apps
- [Syncthing](https://github.com/syncthing/syncthing) - Continuous File Synchronization
- [Tailscale](https://github.com/tailscale/tailscale) - The easiest, most secure way to use WireGuard and 2FA
- [Tautulli](https://github.com/Tautulli/Tautulli) - A Python based monitoring and tracking tool for Plex Media Server
- [Teddit](https://codeberg.org/teddit/teddit) - Alternative Reddit front-end focused on privacy https://teddit.net
- [Transmission](https://github.com/transmission/transmission) - Fast, easy, and free BitTorrent client
- [Wireguard Easy](https://github.com/WeeJeWel/wg-easy) - WireGuard VPN + Web-based Admin UI
- [Vaultwarden](https://github.com/dani-garcia/vaultwarden) - Unofficial Bitwarden compatible server

View File

@ -3,7 +3,7 @@
"name": "teddit",
"available": true,
"exposable": true,
"port": 8110,
"port": 8124,
"id": "teddit",
"tipi_version": 1,
"version": "latest",

View File

@ -1,43 +0,0 @@
version: "3.7"
services:
teddit:
image: teddit/teddit:latest
container_name: teddit
networks:
- tipi_main_network
ports:
- ${APP_PORT}:8080
depends_on:
- teddit-redis
restart: unless-stopped
environment:
- REDIS_HOST=teddit-redis
- DOMAIN=${APP_DOMAIN}
- THEME=dark
- HTTPS_ENABLED=false
- REDIRECT_HTTP_TO_HTTPS=false
- REDIRECT_WWW=false
healthcheck:
test: ["CMD", "wget" ,"--no-verbose", "--tries=1", "--spider", "http://localhost:8080/about"]
interval: 1m
timeout: 3s
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.teddit.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.teddit.entrypoints: websecure
traefik.http.routers.teddit.service: teddit
traefik.http.routers.teddit.tls.certresolver: myresolver
traefik.http.services.teddit.loadbalancer.server.port: 8080
teddit-redis:
image: redis:alpine
container_name: teddit-redis
restart: unless-stopped
volumes:
- ${APP_DATA_DIR}/data/redis:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 1s
timeout: 3s
retries: 30

View File

@ -41,3 +41,5 @@ services:
interval: 1s
timeout: 3s
retries: 30
networks:
- tipi_main_network

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 10 KiB