geodro-289809's avatar

geodro-289809 liked a comment+100 XP

4w ago

@geodro-289809 I’ve been using Docker for years now. How does Podman compare? What does it do differently to Docker?

geodro-289809's avatar

geodro-289809 wrote a reply+100 XP

4w ago

Great question! Podman is almost a drop-in replacement for Docker at the CLI level, so if you know Docker you already know Podman.

The two big differences are that Podman has no daemon running in the background and it's rootless by default, meaning containers run as your own user with no sudo involved. That's actually what makes lerd possible since everything runs as a regular user through systemd on Linux and launchd on macOS.

For day to day use you won't notice much difference, it just works without the overhead of a background service.

geodro-289809's avatar

geodro-289809 started a new conversation+100 XP

4w ago

I've been working on a side project for a while now and thought this community would appreciate it.

It's called lerd and it's a Podman-native PHP development environment for Linux, with macOS support coming very soon. The idea came from the frustration of not having something like Herd on Linux. I wanted automatic .test domains, per-project PHP and Node version isolation, one-command TLS, all without touching the system PHP or depending on Docker.

It bundles Nginx, PHP-FPM and optional services like MySQL, Redis, PostgreSQL, Meilisearch, Minio, Mailpit, Stripe Mock and Reverb as rootless Podman containers. There's also a built-in web UI you can install as a PWA, where you can manage sites, switch PHP and Node versions, toggle services, and watch live logs per project.

It's Laravel-first but supports Symfony, WordPress and any framework through YAML definitions. The project has been growing organically, already has external contributors and pull requests coming in without me reaching out to anyone, which has been encouraging.

You can check it out at github.com/geodro/lerd and the docs are at geodro.github.io/lerd . Would love to hear feedback from the community, especially from anyone running Laravel on Linux.