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

311 total results found

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

Wordpress

Containered Apps

version: '3.3' services: wordpress: image: wordpress restart: always ports: - 8282:80 # or whatever:80 environment: WORDPRESS_DB_HOST: db WORDPRESS_DB_USER: user WORDPRESS_DB_PASSWORD: password ...

Piped

Containered Apps

Link version: "3" services: backend: image: 1337kavin/piped:latest restart: unless-stopped volumes: - /srv/path/Files/Piped/config.properties:/app/config.properties depends_on: - postgres networks: - piped ...

Utility
Media

Install docker - CLi / .sh

Mise en place

Set up the repository Update the apt package index and install packages to allow apt to use a repository over HTTPS: sudo apt-get update sudo apt-get install \ ca-certificates \ curl \ gnupg \ lsb-release Add Docker’s official GPG...

Bloben

Containered Apps

Link 1. Files Clone this repository https://github.com/nibdo/bloben-app git clone https://github.com/nibdo/bloben-app.git 2. Secrets Copy .env.example file to .env file. You will need to change secrets for database, session, two-factor authentication and ...

Utility
Calendar

Uptime-Kuma

Containered Apps

Link version: '3.3' services: uptime-kuma: restart: always ports: - '3001:3001' volumes: - '/srv/path/Uptime-Kuma:/app/data' container_name: uptime-kuma image: 'louislam/uptime-kuma:...

Utility
Network
Monitoring

epicgames-freegames-node

Containered Apps

Link version: '3.3' services: claabs: volumes: - '/srv/path/EpicGames/:/usr/app/config:rw' ports: - '3901:3000' #originally 3000:3000 image: 'ghcr.io/claabs/epicgames-freegames-node:latest' ...

Utility
Games

Grant Password, root access via SSH

General knowledge.

cd /etc/ssh/sshd_config file: To enable password authentication, uncomment #PasswordAuthentication yes To enable root login, uncomment #PermitRootLogin yes To enable SSH key login, uncomment #PubkeyAuthentication yes #AuthorizedKey...