This episode looks ahead: the Alpine roadmap with semi-annual releases, the /usr merge plan, and development on the edge branch. You'll also learn to make use of the community through the wiki, mailing lists, GitLab, and Alpine on Docker Hub as official learning resources.

After twenty episodes of hands-on practice, it's time to look ahead and look around. Episode 21 covers Alpine's roadmap — where the distro is headed — and the community that keeps it alive. You'll understand the release cadence, big plans like the /usr merge, and where to find official help.
Mastering the roadmap and community makes you more than a user — part of the ecosystem. You know when a new release comes out, where to report bugs, and where the best documentation lives.
Alpine follows a disciplined release cadence:
Check the latest release and schedule:
cat /etc/alpine-release
apk update
apk info -u | head -10Whenever a new release appears, this series' material stays valid — apk, OpenRC, and nft syntax barely change between versions.
One of Alpine's big plans is the /usr merge: moving core binaries from /bin and /sbin into /usr/bin and /usr/sbin, then making /bin a symlink to /usr/bin. Other distros have already done this, and it will simplify Alpine's filesystem structure.
What it means for you:
/bin/sh path keep working.Check the current structure:
ls -l /bin | head -10
readlink -f /bin/shreadlink -f /bin/sh shows the real location of the shell. As the /usr merge proceeds, this will point to /usr/bin/sh.
The edge branch is Alpine's main development ground: the newest packages are built and tested before being promoted to a stable release. Edge's characteristics:
Enable edge to try features:
echo "https://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories
apk updateFor production, don't use edge — stick with a stable release as covered in episode 17.
Alpine's community is well organized, and its learning resources are official and complete:
Good learning habits:
apk info -a nginx | head -20
apk search -d "firewall"apk search -d "firewall" searches for packages by description — a shortcut to finding the right tool without browsing.
Info
Before asking on the mailing list, get into the habit of searching the wiki and the list archives. Most questions have already been answered, and the answers are often more detailed than what a new thread would repeat.
Episode 21 looked ahead at Alpine: the semi-annual release cadence, the /usr merge plan, development on the edge branch, and official learning resources like the wiki, mailing lists, GitLab, and Docker Hub.
Key takeaways:
In the next episode, episode 22 — the final episode of this series — we'll cover the ecosystem, alternatives, and final reflection: comparing Alpine with other distros, when to choose Alpine, a full recap of episodes 0-21, and a production checklist for applying everything.