Xiegu G90 + DE-19 + Linux

By Huntly Cameron

WSJT-X & JS8Call After much experimenting and messing around, here are the settings that worked for me for CachyOS (Arch, btw). System permissions First step is to gain access to the serial, if you don’t already have permissions: WSJT-X & JS8Call Radio & Audio Settings Here are the Radio and Audio settings that worked for […]

Read Xiegu G90 + DE-19 + Linux

Docker – Part 6 – the final boss

By Huntly Cameron

So far in this series we’ve covered: These are all the fundamental building blocks to start creating your own setups and containerising applications. In this part, we’ll put everything together to create a WordPress dev environment that you can run locally. We’ll also cover how to set environment variables. This is a fairly large post […]

Read Docker – Part 6 – the final boss

Docker – Part 5 – Volumes

By Huntly Cameron

There’s one last concept we need to understand to have enough of the fundamentals to be dangerous. And that would be volumes. Persisting data Containers are temporary things. When stopping a container will stick around. However, when the container is removed, all modifications will be lost. To see this in action lets spin up an […]

Read Docker – Part 5 – Volumes

Docker – Part 4 – Networking

By Huntly Cameron

If you’ve been following along with this series you’ll have both the PHP API image and the React image. When we’re running these images as containers, there’s double the effort of having to start each one individually. The React app depends on the PHP API. If you’ve got the two PHP API and React containers […]

Read Docker – Part 4 – Networking

Docker – Part 3 – Multiple Containers

By Huntly Cameron

Now that we’ve got a simple PHP API running, lets look at how we can consume that. For this, we’re going to create a small react app using RSBuild There’s no particular reason for RSBuild over anything else other than I wanted to try it out! React App Check out the code on this repo: […]

Read Docker – Part 3 – Multiple Containers

Docker – part 2 – containers

By Huntly Cameron

Rather than diving straight into getting a a large system like WordPress up and running, It’s useful to play with containers on their own first. It shows us why they’re useful and why we would want to split up our WordPress installation into multiple containers instead of one monolithic container running the full stack. Why […]

Read Docker – part 2 – containers

Docker – Part 1 – Intro

By Huntly Cameron

Yet another blog series on docker? Yep. What makes it different to the rest? No idea, but you might find it useful anyhow. This series is written from a perspective of a WordPress dev who has only dabbled with docker before. The ultimate aim is to build a dev environment from scratch. This is part […]

Read Docker – Part 1 – Intro