Advanced Search
Search Results
335 total results found
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...
Lemmy Voyager
Link version: '3.3' services: wefwef: ports: - '5314:5314' environment: - 'CUSTOM_LEMMY_SERVERS=lemmy.ml,pornlemmy.com' image: 'ghcr.io/aeharding/voyager:latest'
LibreX
Link version: "2.1" services: librex: image: librex/librex:latest container_name: librex network_mode: bridge ports: - 8080:8080 environment: - PUID=1000 - PGID=1000 - VERSION=docker - TZ=America...
WinUtil
Create a shortut target : C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Bypass -Command "Start-Process powershell.exe -verb runas -ArgumentList 'irm https://christitus.com/win | iex'
Mount an NFS share.
Link First, create an NFS Share on your host With OMV for example. The location of the files to share. The share will be accessible at /export/. Clients allowed to mount the file system, e.g. 192.168.178.0/24. Please check the [manual page](https://manp...
MIND reminders
Link version: '3.3' services: mind: container_name: mind volumes: - '/srv/Files/MIND/db:/app/db' environment: - TZ=Europe/Paris ports: - '8080:8080' image: 'mrcas/mind:l...
Ntfy
Link version: "2.3" services: ntfy: image: binwiederhier/ntfy container_name: ntfy command: - serve environment: - TZ=Europe/Paris # optional: set desired timezone user: 998:100 # optional: replace with your own...
Reiverr
Link The easiest and the recommended way to install Reiverr is via Docker. Make sure to update the api keys and base URLs to match your setup. Radarr & Sonarr API keys can be found under Settings > General in their respective web UIs. Jellyfin API key is loc...
Immich
Link Docker Compose [Recommended] Docker Compose is the recommended method to run Immich in production. Below are the steps to deploy Immich with Docker Compose. Step 1 - Download the required files Create a directory of your choice (e.g. ./immich-app) to ...
Xyphyn/photon for Lemmy
Link version: '3.3' services: xyphyn: ports: - '8080:3000' environment: - PUBLIC_INSTANCE_URL=lemmy.ml image: 'ghcr.io/xyphyn/photon:latest'
LemmySchedule
Link version: "3.7" services: redis: image: redis hostname: redis command: redis-server --save 60 1 --loglevel warning # make Redis dump the contents to disk and restore them on start volumes: - redis_data:/data lemmy_sched...
Pairdrop
Link version: "2" services: pairdrop: image: lscr.io/linuxserver/pairdrop:latest container_name: pairdrop restart: unless-stopped environment: - PUID=998 # UID to run the application as - PGI...