From 87c761a4bf195edfd761e9d77ceb8d5529e43c7a Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Tue, 11 Nov 2025 14:31:33 -0500 Subject: [PATCH] Add step for enabling and starting local podman socket Allows interfacing with podman on the host from within containers --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b8484f8..62b3109 100644 --- a/Makefile +++ b/Makefile @@ -32,5 +32,7 @@ scripts: cp starship.toml ~/.config/starship.toml sed -i "s/#XXXXXX/$(STARSHIP_COLOR)/g" ~/.config/starship.toml -install: container scripts; +install: container scripts + systemctl --user enable podman.sock --now + systemctl --user enable podman.service --now