#quadlet
gonna reach new levels of autism
May 26, 2026 at 4:20 PM
Podman 6.0 drops CNI, cgroups v1, iptables, slirp4netns, Windows 10, and Intel Mac support while adding new machine and Quadlet features.
linuxiac.com/podman-6-0-l...

#Podman #OpenSource #Containerization
Podman 6.0 Lands with Breaking Changes, AMD GPUs Support
Podman 6.0 drops CNI, cgroups v1, iptables, slirp4netns, Windows 10, and Intel Mac support while adding new machine and Quadlet features.
linuxiac.com
June 24, 2026 at 8:25 PM
ahhhhhhh, finalmente consegui fazer o quadlet do meu servidor de media funcionar! Agora o servidor de media além de poder ser instalado por um comando só, ele também pode integrar com o systemd pra iniciar junto com o sistema!
July 13, 2026 at 11:20 PM
THIS IS SO COOL
Goodbye Docker, hello Quadlet
Manage any container just like a systemd service. The perfect match for any NixOS based Homelab.
oblivion.keyruu.de
May 16, 2025 at 8:00 PM
If you have been holding your breath waiting for Podman v5.6 to come out, it's time to Exhale! A bunch of Quadlet additions to help your orchestration, artifacts commands in the REST API, bugs, and more! Details: github.com/containers/p... #podman #opensource
Release v5.6.0 · containers/podman
Features A new set of commands for managing Quadlets has been added as podman quadlet install (install a new Quadlet for the current user), podman quadlet list (list installed Quadlets), podman qu...
github.com
August 15, 2025 at 5:17 PM
📦 foxws/laravel-podman 4.0.2

Podman Quadlet support to your Laravel application

🔗 https://github.com/foxws/laravel-podman
September 27, 2026 at 2:00 PM
📦 foxws/laravel-podman 4.0.1

Podman Quadlet support to your Laravel application

🔗 https://github.com/foxws/laravel-podman
September 27, 2026 at 2:00 PM
📦 foxws/laravel-podman 4.0.3

Podman Quadlet support to your Laravel application

🔗 https://github.com/foxws/laravel-podman
September 27, 2026 at 3:19 PM
QuadBatch! Serving one million QuadLets ✨Every QuadLet is fully manipulatable ~ no clones, all dynamics 💎60 FPS at half a million,30 FPS at the full million 💃All wrapped up in one shader resources, buffer, and one shader module 💖🚀

#GraphicsProgramming #GameDev #IndieDev
#Vulkan #DotNet #CSharp
January 15, 2026 at 4:35 PM
Podman 6.1 is out with new volume rename and machine restart commands, Quadlet enhancements, improved networking, and multiple bug fixes.
linuxiac.com/podman-6-1-a...

#OpenSource #Virtualization
Podman 6.1 Adds Volume Renaming, Machine Restart
Podman 6.1 is out with new volume rename and machine restart commands, Quadlet enhancements, improved networking, and multiple bug fixes.
linuxiac.com
August 13, 2026 at 7:45 AM
This significantly reduces state changes and improves batching efficiency while increasing material flexibility. 💃Now, each quadlet can reference its own texture maps and use independent UV coordinates, enabling per-quadlet texture animation. 🔥
January 18, 2026 at 12:24 PM
📦 foxws/laravel-podman 3.0.1

Podman Quadlet support to your Laravel application

🔗 https://github.com/foxws/laravel-podman
September 25, 2026 at 11:00 AM
Kegagalan migrasi dari #docker ke #podman adalah kesalahan inersia mental masih pakai pola docker-compose alih-alih quadlet. Walau ada podman-compose yang seolah sama dengan docker-compose, tapi buang itu konsep compose kalau mau full nyemplung di dunia podman. Podman-compose hanya tool untuk […]
Original post on mastodon.kodesumber.com
mastodon.kodesumber.com
September 26, 2026 at 8:21 AM
Podman 5.7 container management tool introduces encrypted client–server communication, while Quadlet gains new keys, templates, and artifact support.
linuxiac.com/podman-5-7-a...

#podman #containerization #opensource
Podman 5.7 Adds Full TLS and mTLS Encryption for Remote Connections
Podman 5.7 container management tool introduces encrypted client–server communication, while Quadlet gains new keys, templates, and artifact support.
linuxiac.com
November 11, 2025 at 7:58 PM
oh neat this is exactly what i needed this seems to handle podman quadlets within nix entirely
GitHub - SEIAROTg/quadlet-nix: Manages Podman containers and networks on NixOS via Quadlet.
Manages Podman containers and networks on NixOS via Quadlet. - SEIAROTg/quadlet-nix
github.com
July 6, 2025 at 5:44 AM
vid!

Podman quadlet first impression: really really good!

www.youtube.com/watch?v=k5Vt...
How do I deploy Gleam to a Linux server with Podman?
YouTube video by Louis Pilfold
www.youtube.com
November 2, 2024 at 9:44 PM
Podman v5.8.0 has just been released! It's on its way to Fedora and other distros shortly. Features include changes to Quadlet, changes to the artifact and update commands, and more! Check out the release notes! github.com/containers/p... #podman #OpenSource
Release v5.8.0 · containers/podman
Features The podman quadlet install command can now install files which contain multiple separate Quadlet files. The files must be separated with a --- delimeter on a new line, and each section mu...
github.com
February 12, 2026 at 7:24 PM
Uptime Kuma on Fedora with Podman Quadlet
Over the weekend, I decided to set up Uptime Kuma on my mini-server. I needed a quick way to monitor some important work services, and Uptime Kuma’s Slack notifications make it easy to get alerts directly in our channel whenever something goes down. While I was at it, I figured it was the perfect time to learn **Podman Quadlet**. I have recently learned as a neat way to manage containers using declarative files (similar to Kubernetes YAML) that automatically generate systemd services so your apps start at boot and stay running. ## Installing Podman First, make sure Podman is ready to go. On my Fedora machine, that’s just a quick: sudo dnf update -y && sudo dnf install podman -y ## Project Organization I like to keep my tools organized under an `infrastructure` directory. mkdir -p ~/infrastructure/uptime-kuma/data cd ~/infrastructure/uptime-kuma We’re creating a `data` directory here to mount as a volume so our Uptime Kuma configuration persists even if the container restarts. ## Handling SELinux Permissions Since Fedora is strict about security, you need to tell SELinux that the container is allowed to write to your local data folder. chcon -t container_file_t -R ~/infrastructure/uptime-kuma/data Using `:Z` in a YAML `hostPath` isn't standard K8s syntax (unlike what we commonly find in Docker Compose files), so this manual `chcon` approach is a reliable way to ensure the container has write access. ## Creating the Kubernetes YAML Next, create a file named `uptime-kuma.yaml`. This defines the pod and the container. apiVersion: v1 kind: Pod metadata: name: uptime-kuma-pod spec: containers: - name: uptime-kuma image: lscr.io/linuxserver/uptime-kuma:latest ports: - containerPort: 3001 hostPort: 3001 ## You can change this port env: - name: TZ value: "Asia/Manila" volumeMounts: - mountPath: /app/data name: kuma-data volumes: - name: kuma-data hostPath: path: /home/jantolentino/infrastructure/uptime-kuma/data ## Change this path type: Directory ## Moving to Quadlet (Systemd Integration) Instead of just running `podman kube play`, we’ll use a **Quadlet`.kube` file**. This tells systemd to manage the Kubernetes YAML we just wrote. First, create the Quadlet directory if it doesn't exist: mkdir -p ~/.config/containers/systemd Now, create a file named `uptime-kuma.kube` inside that folder: [Unit] Description=Uptime Kuma Service Wants=network-online.target After=network-online.target [Kube] ## Path to your Kubernetes YAML Yaml=/home/jantolentino/infrastructure/uptime-kuma/uptime-kuma.yaml [Install] WantedBy=default.target ## Activating the Service The awesome part is that when you reload the systemd daemon, Podman’s Quadlet generator sees your `.kube` file and creates a real systemd service automatically. ## Refresh systemd to find the new Quadlet systemctl --user daemon-reload ## Start and enable the service systemctl --user enable --now uptime-kuma.service ## Enable "Linger" By default, "user" services stop when you log out. Since this is a server, we want it to run 24/7 even without an active SSH session. Use the `loginctl` command to enable "lingering": loginctl enable-linger jantolentino Now your Uptime Kuma instance will start automatically as soon as the server boots up. No more manual starts needed! _Originally published at jantolentino.dev_
dev.to
September 27, 2026 at 7:48 AM
P.S. Вот чего, пожалуй, нехватает - так это генерации quadlet - конфига с помощью самого podman. Потому как podman generate systemd есть, но он deprecated, а вот podman generate quadlet - неть :) Странное.
July 22, 2026 at 2:42 PM
📦 foxws/laravel-podman 2.1.10

Podman Quadlet support to your Laravel application

🔗 https://github.com/foxws/laravel-podman
September 22, 2026 at 12:31 PM
Podman v5.6 is getting closer, and today, Podman v5.6.0 RC2 dropped! A number of speed improvements in image builds, new quadlet commands, and several bug fixes. Release Notes with details: github.com/containers/p... #podman #OpenSource
Release v5.6.0-RC2 · containers/podman
Features A new set of commands for managing Quadlets has been added as podman quadlet install (install a new Quadlet for the current user), podman quadlet list (list installed Quadlets), podman qu...
github.com
August 8, 2025 at 5:37 PM
and today on project ideas that keep coming back to me but that are far too ambitious for me to be able to do any time soon: NVE. Nix Virtual Environment. kinda like PVE but integrating with various nix centred virtualisation technologies (nixos containers, mircovm.nix, quadlet-nix, etc)
September 29, 2025 at 9:20 PM
It's so interesting how "easy to deploy" means completely different things to people in a server-side context

To me and most Linux people it's probably something along the lines of "single binary" or maybe an OCI image for a quadlet

To CNCF folks it's a Helm chart
August 20, 2026 at 7:55 PM
🧵 Jako quadlet je to nejblíž integraci do systému jak jen může být v téhle formě. Chová se to jako standardní systemd service, takže funguje `systemctl start/stop/enable/disable/status incus.service`

Trochu oříšek je klient, ale ten je dostupný buď v Homebrew a nebo Incus vydává oficiální […]
Original post on mastodonczech.cz
mastodonczech.cz
September 27, 2026 at 12:12 PM