Docker alternatives for a Go/Kotlin developer

Hello all,
What are you doing to run Docker images in FreeBSD?

I'm in the process from Linux to FreeBSD, the only "issue" that I found was how to run Docker images, which is required by my work.
Personal projects, usually in C, Zig, are good. My Docker dependencies here are more infra-related, and I can use other alternatives like Jail, and recently configured my home service to run the Docker service.
 
Probably best to target jails if you're the solution author. You can get a behavior similar to Dockerfile by starting with a base system ZFS snapshot and a .sh script to run the commands to deploy your software on it.

Also, if you're using C and Zig, you don't have a lot of dependencies to manage, which is one of the best use case of Docker.

Got some success with Docker on FreeBSD with nice use of ZFS features around 2015, but some years after, it wasn't https://wiki.freebsd.org/action/info/Docker?action=info

At Nasqueron, we run our infrastructure mostly on FreeBSD servers, but our Docker PaaS is on Rocky (CentOS 7 before) to run things like OpenFire, Phabricator, Sentry, Jenkins, Hound, Penpot, PixelFed, our own API microservices in Rust, Node.Js and Python, some more monolith like a login realm.
 
Back
Top