Advanced Search
Search Results
339 total results found
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...
Wallos
Subscription tracker Link version: '3.0' services: wallos: container_name: wallos image: bellamy/wallos:latest ports: - "8282:80/tcp" environment: TZ: 'America/Toronto' # Volumes store your data between container ...
ownCloud
Link version: "3" volumes: files: driver: local mysql: driver: local redis: driver: local services: owncloud: image: owncloud/server:${OWNCLOUD_VERSION} #eg owncloud/server:latest container_name: owncloud_server ...
ownCloud Infinity Scale
This note was originally taken from: https://owncloud.dev/ocis/guides/ocis-local-docker/ Start oCIS with docker compose Create the project Use the following skeleton as a docker-compose.yml: mkdir simple-ocis && \ cd simp...
Cloudreve
Create the necessary directory structure: mkdir -vp cloudreve/{uploads,avatar} \ && touch cloudreve/conf.ini \ && touch cloudreve/cloudreve.db \ && mkdir -p aria2/config \ && mkdir -p data/aria2 \ && chmod -R 777 data/aria2 Save the following content ...
*arr Mega Stack
version: "3.7" services: radarr: container_name: radarr hostname: Radarr image: ghcr.io/hotio/radarr ports: - "7878:7878" environment: - PUID=998 - PGID=100 - UMASK=002 - TZ=Europe/Paris vo...
Seafile
Link services: db: image: mariadb:10.11 restart: always container_name: seafile-mysql environment: - MYSQL_ROOT_PASSWORD=db_dev # Requested, set the root's password of MySQL service. - MYSQL_LOG_CONSOLE=true volumes:...
Shotshare
An Imgur replacement Link cd /homegit clone https://github.com/mdshack/shotsharecd /srv/dev-disk-by-uuid-7fe66601-5ca0-4c09-bc13-a015025fe53a/Files/sudo mkdir Shotsharecd /srv/dev-disk-by-uuid-7fe66601-5ca0-4c09-bc13-a015025fe53a/Files/Shotsharesudo mkdir sh...