Advanced Search
Search Results
311 total results found
Flatnotes
Link version: "3" services: flatnotes: container_name: flatnotes image: dullage/flatnotes:latest environment: PUID: 998 PGID: 100 FLATNOTES_AUTH_TYPE: "password" FLATNOTES_USERNAME: "user" FLATNOTES_PASS...
Yacy
Link Won't work as a stack, need to run in CLi. Don't change --vCheck the image you want to use. docker run -d --name yacy_search_server -p 8090:8090 -p 8443:8443 -v yacy_search_server_data:/opt/yacy_search_server/DATA --restart unless-stopped --log-opt max...
Watch your LAN
Link version: '3.3' services: watchyourlan: container_name: watchyourlan environment: - IFACE=enp1s0 eth0 - TZ=Europe/Paris network_mode: host volumes: - '/srv/path/Files/Watchyo...
Nextcloud All-In-One
Link | Tutorial version: "3.8" volumes: nextcloud_aio_mastercontainer: name: nextcloud_aio_mastercontainer services: nextcloud: image: nextcloud/all-in-one:latest restart: unless-stopped container_name: nextcloud-aio-mastercontainer ...
Websurfx
Link Created the folder for Websurfx. In this example: /srv/Files/Websurfx/, in which you need to create two new empty files named allowlist.txt and blocklist.txt. Finally, create a new config file config.lua with this configuration: config.lua -- ### Gen...
Plant-it
Github Plant-it is a self-hosted gardening companion app. Useful for keeping track of plant care, receiving notifications about when to water plants, uploading plant images, and more. Installing Plant-it is pretty straight forward, in order to do so follow t...
Note-mark
Link Both the backend and frontend are distributed by as Docker images, making deployment easier. Below are the image names: ghcr.io/enchant97/note-mark-backend ghcr.io/enchant97/note-mark-frontend The following labels are available: TIP Image labe...
Piglet
Link version: '3.3' services: piglet: restart: unless-stopped container_name: piglet depends_on: - database ports: - '0.0.0.0:80:80' # Piglet - '0.0.0.0:8080:8080' # API image: k3nd0x/piglet:...
Silverbullet
Link silverbullet: container_name: silverbullet image: zefhemel/silverbullet volumes: - /media/docker/silverbullet/space:/space ports: - 3000:3000 restart: unless-stopped environment: - PUID=1000 - P...
Smokeping
--- version: "2.1" services: smokeping: image: lscr.io/linuxserver/smokeping:latest container_name: smokeping environment: - PUID=998 - PGID=100 - TZ=Europe/Paris volumes: - /srv/path/Files/Smokeping/config:...
Build an image from a DockerFile and push it to DockerHub.
How to log into your Docker Hub account We have to log into our Docker Hub account to push the new image. To successfully log into Docker Hub from the command line, you must first create an access token. Log in to Docker Hub and click your profile image. From...
Reactive Resume
Link 1 | Link 2 version: "3.8" services: postgres: image: postgres:alpine restart: always ports: - 5432:5432 volumes: - pgdata:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "pg_isready -U postgre...
Merge ans deduplicate domains in a blocklist
Use WGET to download lists, then combine them into a single large file, and finally create a new file with no duplicates by using “awk '!visited[$0]++'” wget URL1 URL2 URL3 cat *.txt > all.txt (This overwrites all.txt) awk '!visited[$0]++' all.txt > no_dupl...
Ladder
Link Ladder is a web proxy to help bypass paywalls. This is a selfhosted version of 1ft.io and 12ft.io. It is inspired by 13ft. version: '3' services: ladder: image: ghcr.io/kubero-dev/ladder:latest container_name: ladder build: . #re...
Add geo-location based access rules to Nginx Proxy Manager
Link Nginx Proxy Manager Geo-Location Based Access Rules This project allows running a python script that adds geo-location based access rules to Nginx Proxy Manager using free IP location data from db-ip (their free data is updated monthly but is not as com...
Dockge
Link version: "3.8" services: dockge: image: louislam/dockge:latest restart: unless-stopped ports: # Host Port:Container Port - 5001:5001 volumes: - /var/run/docker.sock:/var/run/docker.sock - /srv/Dockge/da...
I Hate Money
Github I hate money is a web application made to ease shared budget management. It keeps track of who bought what, when, and for whom; and helps to settle the bills. version: "3.3" services: ihatemoney: ports: - 8293:8000 # OG 8000:8000 ...
Fireshare
Link version: "3" services: fireshare: container_name: fireshare image: shaneisrael/fireshare:latest ports: - "8080:80" volumes: - /srv/path/Fireshare/data:/data - /srv/path/Fireshare/processed:/processed - ...
Nomie
Link 1 | Link 2 First, create <YOUR PATH>/couchdb.ini and paste this: [HTTPD] enable_cors = true [chttpd] enable_cors = true [cors] origins = * credentials = true methods = GET, PUT, POST, HEAD, DELETE headers = accept, authorization, content-typ...
Traggo
Link version: "3.7" services: traggo: image: traggo/server:latest ports: - 3030:3030 environment: TRAGGO_DEFAULT_USER_NAME: "admin" TRAGGO_DEFAULT_USER_PASS: "mynewpassword" volumes: - ./traggodata:/opt/trag...