Advanced Search
Search Results
312 total results found
Soulseek
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...
Youtube Revanced
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...
Memos
Link version: "3.0" services: memos: image: neosmemo/memos:latest container_name: memos volumes: - /srv/path/Memos/:/var/opt/memos ports: - 5230:5230
FOSS alternatives to google apps
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
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
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.
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)
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...
NeonLink
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. ...
Linkding
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
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
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...
My Spotify
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 #...
Install gh Github CLi
apt install gh -y then gh auth login
Homepage
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...
What's up Docker
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
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.
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...