Spinning Up an Even Older WordPress Site Using Docker Compose

Following up my last post, I realized that I wasn’t looking through the tags on Docker Hub properly, and the earliest version available as a pre-built container is actually WordPress 3.9! I had to take a closer look at the logs and make some guesses, as it turns out the environment variable for pointing WordPress to the right database host is different, and its hard to find info on using 8 year old docker images, but I got it working:...

July 12, 2023 · 1 min

Spinning Up a Pretty Old WordPress Site Using Docker Compose

UPDATE: I got WordPress 3.9 working too! For reasons, I needed to spin up a very old WordPress site using Docker today. I’m writing this blog post mostly just to jot down the compose file so I have it handy in the future. Digging through the oldest tags for the wordpress image on DockerHub it looked like 4.1 was the oldest version available, so I went with it. For the database, (after some trial and error) I ended up using the last version of MySQL version 5....

July 12, 2023 · 2 min

Some notes on upgrading PostgreSQL in Docker

Here are some quick notes from helping Jim upgrade his bava.tv Peertube instance from PostgreSQL 10 to PostgreSQL 13. bava.tv uses Docker so actually changing Postgres versions is dead simple (basically just edit a number in the docker-compose.yml file and restart the containers) but we found out pretty quickly that you can’t just change the version of Postgres and expect the database to still work. First I cloned the environment so I could do some testing and added Adminer to the docker-compose....

June 21, 2023 · 3 min

A quick web UI for database management in docker-compose!

I have a lot of half-finished blog posts that I want to finish up soon coming back from both Reclaim Open and a week-long family vacation, but hey I might as well finish up this old draft as I used this trick yet again today. I’ve got to get the blog momentum going after a few month’s hiatus! I work with docker and docker-compose very often for Reclaim Cloud stuff nowadays, and while I’m pretty comfortable with bind-mounts, docker volumes, and docker cp for getting files in and out of containers, doing serious things with databases still scares me a little....

June 19, 2023 · 3 min

Peertube 4.2!

PeerTube 4.2 is out, and it has all kinds of features I’m excited about like in-place editing of videos, replays of recurring live streams (basically you can have a permanent Twitch-like URL where you can go live and then have a recording of that livestream automatically available afterward), latency settings for livestreams, and a bunch of other stuff. I wanted to get my PeerTube instance on Reclaim Cloud upgraded, which is a docker-compose setup with the Live Chat plugin enabled, so I stopped the containers, pulled changes, and started the containers again....

June 21, 2022 · 2 min

Messing around with Kasm Workspaces on Reclaim Cloud

At the end of the day today I streamed a little bit of me playing around with Kasm Worskpaces on Reclaim Cloud: The tool seems interesting and it has been on my list of things to look into for a little while. It’s basically a self-hostable Desktop-as-a-Service (DaaS), like Citrix or Amazon Appstream, but for Linux Desktops and applications. Also, it has a free version! Under the hood it all runs on Docker, which is how I found out about it....

April 27, 2022 · 1 min