Deploy Wordpress using Docker Compose with phpMyAdmin
Launch Wordpress and phpMyAdmin using Docker Compose. Save as docker-compose.yml version: "3.9" services: mariadb: ...
VS Code Server with Password and Port Using Docker Compose
Launch VS Code on the server using Docker compose with a password and custom port. Save as docker-compose.yml version:...
Install Notepad++ with Wine Crossover on Apple Silicon MacOS
Notepad++ is one of those amazing apps that exists only on Windows. You can install it using Parallels, but this will allow you to install it without...
Deploy Next.js App Using Docker Compose
Save as docker-compose.yml inside your app directory (same directory as next.config.js and package.json) Change 3200 to your preferred public...
Deploy phpMyAdmin with Built-in PHP Server
Run phpMyAdmin from MacOS or Linux without a web server such as Apache or Nginx, using just the built in PHP server. Download phpMyAdmin and unzip...
Change Node Version
Change the version of Node using n or nvm. Change Node version using N Globally install n npm install -g n Change to Node.js 18 n 18 node -v Change...
Rclone Ubuntu Server to Google Drive
This is a component tutorial for Automatic Backups from Ubuntu Server to Google Drive Update package manager apt update Install workflow...
Automatic Daily Backups from Ubuntu Server to Google Drive
This requires rclone installed and configured to Google Drive. See Rclone Ubuntu Server to Google Drive Create the script vi backup.sh ...