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

335 total results found

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...

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

General knowledge.

1 - Create a new Dockerfile in your project directory: FROM python:3.9-slim-buster WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY . . CMD [ "python", "bot.py" ] This Dockerfile uses the offic...

How to create a dockerfile.

General knowledge.

To create a new Dockerfile, follow these steps: Open a text editor of your choice (such as Nano, Vim, or Sublime Text). Create a new file and save it as "Dockerfile" in your project directory. Copy and paste the contents of the Dockerfile template into th...

Mount an SMB share.

General knowledge.

You nee the helper program installed for either the nfs or cifs file system. For nfs based file system, following utility is required sudo apt-get install nfs-common To mount a Cifs file system, install the following utility sudo apt install cifs-utils The...

Export Docker Container Settings as Docker Compose Stack

General knowledge.

You can use this tool from a docker container by either cloning this repo and building the image or using the automatically generated image on GitHub Pull the image from GitHub (supports both x86 and ARM) docker pull ghcr.io/red5d/docker-autocompose:latest ...

Scrutiny

Containered Apps

Link version: '3.5' services: scrutiny: container_name: scrutiny image: ghcr.io/analogj/scrutiny:master-omnibus cap_add: - SYS_RAWIO # - SYS_ADMIN # for NVME drives ports: - "8384:8080" # webapp - "8086:808...

Monitoring
Utility

Manage my damn life

Containered Apps

Instructions Variables First cd /path/to/files Pull the repository, or download latest release from Github. git clone https://github.com/intri-in/manage-my-damn-life-nextjs.git Copy sample compose file. cp docker-compose.yml.sample docker-compose.yml Y...

Utility
Calendar

Nextcloud on Oracle free tier.

General knowledge.

Prerequisite You'll need an account at https://cloud.oracle.com/ and a domain name. Server Setup Get started > Launch ressources > create a VM instance Name the instanceChange image to Cannonical Ubuntu 20.04Change shape to Ampere, increase CPU and RAMCr...

MKVToolNix

Containered Apps

Link version: '3' services: mkvtoolnix: image: jlesage/mkvtoolnix ports: - "5800:5800" volumes: - "/docker/appdata/mkvtoolnix:/config:rw" - "/home/user:/storage:rw"  

Utility
Media

Ghost

Containered Apps

Link version: '3.3' services: ghost: image: ghost:latest restart: always depends_on: - db environment: url: https://example.com database__client: mysql database__connection__host: db database__conne...