Advanced Search
Search Results
312 total results found
How to create a bot that publishes the daily top post of a subreddit to a Discord channel (Docker).
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.
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.
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
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
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...
Manage my damn life
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...
Nextcloud on Oracle free tier.
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
Link version: '3' services: mkvtoolnix: image: jlesage/mkvtoolnix ports: - "5800:5800" volumes: - "/docker/appdata/mkvtoolnix:/config:rw" - "/home/user:/storage:rw"
Ghost
https://github.com/bigbeartechworld/big-bear-video-assets/blob/main/portainer/ghost/docker-compose-ghost.yml This guide explains how to deploy Ghost CMS with MySQL using Docker Compose. It’s a ready-to-go setup with persistent volumes. Docker Compose File C...
Wordpress
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
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 ...
Install docker - CLi / .sh
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
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 ...
Uptime-Kuma
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:...
epicgames-freegames-node
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' ...
Grant Password, root access via SSH
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...
List of TBS & Strategy Games for Nintendo Switch (update 12/2020)
I finally updated my list ! I added a bunch of games. Please, feel free to correct and complete the list if I missed some in the comments :) Edit: the RPG section lists games with turn based combat system. I'll clarify that in the title of my next update. ...
Teddit
Link Docker-compose method (production) Create /srv/path/Teddit/config.js Paste this, editing the subs you want to follow: To find this, /bin/bash into the teddit container, and cat config.js while running the stack without the -volumes variable. cons...