Advanced Search
Search Results
19 total results found
Docker
Docker is a platform designed to help developers build, share, and run container applications.
Hardware
Raspberry Pi, hard disk and other computer ressources.
Web Development
Web Development is the work involved in developing a website, static or dynamic.
Set Up
The installation, configuration and some tips about Docker.
Raspberry Pi
The Raspberry Pi is a credit-card-sized, single-board ARM nanocomputer.
Applications
Tips and Tricks about some of my Docker Applications.
Troubleshooting
Fix errors and inconveniences with Docker in everyday life.
Hugo
Hugo is a static site generator (a software engine that uses text input files to generate static web pages) written in Go.
Pelican
Pelican is a static site generator powered by Python that requires no database or server-side logic.
Docker Installation on Raspberry Pi 4 / RaspberryPi OS
The Docker installation is pretty straighforward, just follow the official tutorial on docker.com. Adding the repository Firstly, you need to add the repository of the Docker Engine: # Add Docker's official GPG key: sudo apt-get update sudo apt-get install ca-...
Change the Raspberry Pi Boot Order
Looking to boot your Raspberry Pi from a hard drive? Great news: it’s possible! However, you’ll still need an SD card initially to configure the boot order. Installing Raspberry Pi OS First, you'll need to install Raspberry Pi OS on both your SD card and hard ...
Bookstack // Changing the Base URL
Sometimes, you need to change the base URL of Bookstack, for example, when you switch from the localhost address to the internet exposed address. Docker Compose In your compose.yaml, modify the following environment variable: APP_URL=<new_url> Bookstack Conta...
Paperless-NGX // Backup & Restore
Here is the procedure to backup and restore the Paperless-NGX application and all of its data. Backup On a terminal, enter the following command: docker compose exec -T <paperless_webserver> document_exporter -z ../export Where: -T is used to suppress "The ...
Assign a Static IP Address
Static IP To configure your Raspberry Pi with a static IP address, follow these steps: Open the network interfaces configuration file by running: sudo nano /etc/network/interfaces Replace the contents of the file with the following settings: auto eth0 ifa...
Docker Anonymous Volumes
To manage my stacks, containers, images, networks, and volumes, I use Portainer Community Edition. I was surprised when I found three volumes with randomly generated names mixed in with my carefully organized ones. Initially, I thought it was a bug, but I soon...
Hugo Installation on MacOS
This guide will walk you through setting up a development environment by installing Go, Dart Sass, and Hugo on your MacOS machine. Prerequisites Before installing Hugo, you'll need to have Go and Dart Sass installed on your system. Installing Go Download the...
Hugo Step-by-Step
Hugo is a popular static site generator known for its speed and flexibility. This guide will help you get your site up and running in no time. Step 1: Create Your Hugo Site Directory To begin, you'll need to create the directory structure for your new Hugo sit...
Pelican Installation on MacOS
This guide will explain to you Pelican and walk you through setting up a development environment by installing it on your MacOS machine. What is Pelican? Pelican is a Static Site Generator (SSG), and its name is an anagram of the French word calepin, meaning n...
Pelican Step-by-Step
With Pelican installed, it's time to create the structure of your blog and configure it using the pelican-quickstart command. Initial Setup Running pelican-quickstart will guide you through setting up the basic framework for your blog. Below is an example of t...