Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

312 total results found

Soulseek

Containered Apps

Link version: '3.3' services: soulseek: container_name: soulseek restart: unless-stopped volumes: - '/srv/path/Files/Soulseek/data:/data/.SoulseekQt' - '/srv/path/Files/Soulseek/downloads:/data/Soulse...

Music
Media
Utility
Torrent

Youtube Revanced

On Android.

After you install it, you'll have to turn on the new youtube layout in the settings as it's turned off by default. All sources below would be official ones, if you encounter any problems feel free to comment down. Here goes: Download and install microg...

Media
Privacy
Piracy

Memos

Containered Apps

Link version: "3.0" services: memos: image: neosmemo/memos:latest container_name: memos volumes: - /srv/path/Memos/:/var/opt/memos ports: - 5230:5230

Utility

FOSS alternatives to google apps

On Android.

GBoard → OpenBoard (FlorisBoard when the v4 will be released) Google message → QKSMS Google Authentificator → Aegis Google Calculator → OpenCalc Play Store → Aurora Store, Fdroid, Neo Store Google News → News Google Keep → QuillNote (QuillPad is a new up...

RClone + GUI

Containered Apps

Link version : '3.7' services: rclone_rclone: image: rclone/rclone container_name: rclone restart: always command: rcd --rc-web-gui --rc-addr :5572 --rc-user USER --rc-pass PASSWORD ports: - "5572:5572" volumes: ...

How to schedule a script to run every x days at x:00

General knowledge.

To schedule a script to run automatically at a specific time in Debian, you can use the cron utility. cron is a built-in Linux utility that allows you to schedule tasks to run automatically at a specified time or interval. To schedule a script to run at a spe...

How to embed external subtitles in a video file using mkvtoolnix.

General knowledge.

Official usage page. Basic use First, make sure that mkvmerge is installed on your system by running the following command: apt-get install mkvtoolnix Next, navigate to the directory where the movie file and the subtitle file are located using the cd comma...

Tailscale (in a container, host wide)

Containered Apps

Official site Inspiration version: "3.3" services: tailscale: container_name: tailscale hostname: yourhostname network_mode: "host" # mandatory if you want it system wide image: tailscale/tailscale:stable volumes: - ./Ta...

Utility
Network

NeonLink

Containered Apps

Link First, create an empty bookmarks.sqlite file in the installation folder (i.e. /srv/disk/files/neonlink) Replace {80} with any port you like. Replace {/path/to/bookmarks.sqlite} with the absolute path to the bookmarks.sqlite file you created earlier. ...

Utility

Linkding

Containered Apps

Link To install linkding using Docker Compose, you can use the docker-compose.yml file. Copy the .env.sample file to .env, configure the parameters, and then run: docker-compose up -d

Linkace

Containered Apps

Link 1 - Download and extract linkace-docker-simple.zip 2 - Edit the base configuration You have to change the following settings in the .env file before starting the setup: DB_PASSWORD - Please set a secure password here REDIS_PASSWORD - Please set a s...

Shlink

Containered Apps

Video*ShlinkMaxmind version: "3" services: shlink: image: shlinkio/shlink:stable restart: unless-stopped container_name: shlink-backend environment: - TZ="Europe/Paris" - DEFAULT_DOMAIN=sub.domain.ldt #no http/https. no...

Network
Utility

My Spotify

Containered Apps

Link version: "3" services: server: image: yooooomi/your_spotify_server restart: always ports: - "8080:8080" links: - mongo depends_on: - mongo environment: - API_ENDPOINT=http://localhost:8080 #...

Utility
Music

Install gh Github CLi

General knowledge.

apt install gh -y then gh auth login

Homepage

Containered Apps

Link services: homepage: image: ghcr.io/gethomepage/homepage:latest container_name: homepage ports: - 5005:3000 volumes: - /srv/path/to/config:/app/config - /srv/path1:/data # for...

Utility
Dashboard

What's up Docker

Containered Apps

Link version: '3' services: whatsupdocker: image: ghcr.io/fmartinou/whats-up-docker container_name: wud volumes: - /var/run/docker.sock:/var/run/docker.sock ports: - 3000:3000

How to run Bashtop on Debian

General knowledge.

To install : Bashtop is available in Azlux’s repository as well as Debian repository and all you need is to download the Debian package and install it as shown: $ wget http://packages.azlux.fr/debian/pool/main/b/bashtop/bashtop_0.9.25_all.deb $ sudo dpkg ...

How to create a bot that publishes the daily top post of a subreddit to a Discord channel.

General knowledge.

To create a bot that publishes the daily top post of a subreddit to a Discord channel, you can follow these general steps: Create a new bot account on Discord by going to the Discord Developer Portal, creating a new application, adding a bot to the applic...