Self-Hosting
List of Project that might be a thing to self-host
Vanilla is a powerfully simple discussion forum you can easily customize to make as unique as your community. - GitHub - vanilla/vanilla: Vanilla is a powerfully simple discussion forum you can easily customize to make as unique as your community.
Docker container for managing Nginx proxy hosts with a simple, powerful interface - GitHub - NginxProxyManager/nginx-proxy-manager: Docker container for managing Nginx proxy hosts with a simple, powerful interface
Free Modern URL Shortener. Contribute to thedevs-network/kutt development by creating an account on GitHub.
? Directory Lister is the easiest way to expose the contents of any web-accessible folder for browsing and sharing. - GitHub - DirectoryLister/DirectoryLister: ? Directory Lister is the easiest way to expose the contents of any web-accessible folder for browsing and sharing.
A platform for community discussion. Free, open, simple. - GitHub - discourse/discourse: A platform for community discussion. Free, open, simple.
Open platform to collect and prioritize feedback. Contribute to getfider/fider development by creating an account on GitHub.
Feedback collecting web service. Contribute to feedbacky-project/app development by creating an account on GitHub.
theme.park contains 48 themed applications, with css addons on certain themes. Installation methods include custom docker mods for linuxserver.io containers, custom scripts for select Hotio containers and multiple examples of subfiltering using webservers like Nginx and Apache
Flarum is the next-generation forum software that makes online discussion fun. It's simple, fast, and free.
A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations. - GitHub - benphelps/homepage: A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations.
Manga Manager collects useful tools to make managing your manga library easy. (Acts directly on files) - GitHub - MangaManagerORG/Manga-Manager: Manga Manager collects useful tools to make managing your manga library easy. (Acts directly on files)
version: "2.1" services: mangatagger: image: banhcanh/manga-tagger container_name: mangatagger environment: - PUID=1000 - PGID=1000 - TZ=Europe/Paris - UMASK=022 #optional
- MANGA_TAGGER_DEBUG_MODE=false
- MANGA_TAGGER_IMAGE_COVER=true
- MANGA_TAGGER_ADULT_RESULT=false
- MANGA_TAGGER_DRY_RUN=false
- MANGA_TAGGER_DB_INSERT=false
- MANGA_TAGGER_RENAME_FILE=false
- MANGA_TAGGER_WRITE_COMICINFO=false
- MANGA_TAGGER_THREADS=8
- MANGA_TAGGER_MAX_QUEUE_SIZE=0
- MANGA_TAGGER_DB_NAME=manga_tagger
- MANGA_TAGGER_DB_HOST_ADDRESS=mangatagger-db
- MANGA_TAGGER_DB_PORT=27017
- MANGA_TAGGER_DB_USERNAME=manga_tagger
- MANGA_TAGGER_DB_PASSWORD=Manga4LYFE
- MANGA_TAGGER_DB_AUTH_SOURCE=admin
- MANGA_TAGGER_DB_SELECTION_TIMEOUT=10000
- MANGA_TAGGER_LOGGING_LEVEL=info
- MANGA_TAGGER_LOGGING_CONSOLE=true
- MANGA_TAGGER_LOGGING_FILE=true
- MANGA_TAGGER_LOGGING_JSON=false
- MANGA_TAGGER_LOGGING_TCP=false
- MANGA_TAGGER_LOGGING_JSONTCP=false
volumes:
- /path/to/config:/config
- /path/to/library:/manga # directory manga-tagger move tagged files to
- /path/to/downloads:/downloads # directory manga-tagger watch
restart: unless-stopped
depends_on:
- mangatagger-db
ports: # Optional, only useful for TCP and Json TCP logging
- 1798:1798
- 1799:1799
mangatagger-db: # you can use your own mongodb, edit the manga-tagger settings.json accordingly image: mongo container_name: mangatagger-db volumes: - /path/to/mangatagger/db:/data/db # db persistence environment: MONGO_INITDB_ROOT_USERNAME: manga_tagger MONGO_INITDB_ROOT_PASSWORD: Manga4LYFE MONGO_INITDB_DATABASE: manga_tagger restart: unless-stopped