Advanced Search
Search Results
335 total results found
UpSnap
Link 1 | Link 2 version: "3" services: upsnap: container_name: upsnap image: ghcr.io/seriousm4x/upsnap:4 network_mode: host restart: unless-stopped volumes: - /srv/path/Files/Upsnap/data:/app/pb_data environment: ...
Gotify
Link version: "3" services: gotify: image: gotify/server ports: - 8080:80 environment: - GOTIFY_DEFAULTUSER_PASS=custom #change this. for "admin" credential volumes: - "./gotify_data:/app/data" gotify/server-a...
Les tutos d'iinul
Playslist youtube Vous souhaitez ajouter vos propres histoires ou des histoires créés par des amateurs dans votre boite à histoire LUNII ? Voici un tuto pour débuter où nous ajoutons la première histoire interactive de CherieFM : Alice au Pays des Merveilles...
Jekyll
--- version: "2" services: jekyll: image: bretfisher/jekyll container_name: jekyll volumes: - /srv/Files/Jekyll:/site restart: unless-stopped jekyll-serve: image: bretfisher/jekyll-serve container_name: jekyll-serve...
Alexandrite
Link version: '3.7' services: # ... alexandrite: image: ghcr.io/sheodox/alexandrite:latest ports: - 3002:3000 environment: # example config only allowing logins to example.com # with no links to Lemmy docs, or an ins...
Stirling-PDF
Github Stirling-PDF is a robust, locally hosted web-based PDF manipulation tool using Docker. It enables you to carry out various operations on PDF files, including splitting, merging, converting, reorganizing, adding images, rotating, compressing, and more. ...
Linkstack
Link version: "3.8" services: linkstack: hostname: 'linkstack' image: 'linkstackorg/linkstack:latest' environment: TZ: 'Europe/Paris' SERVER_ADMIN: 'admin@example.com' HTTP_SERVER_NAME: 'example.com' HTTPS_SE...
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...