From b9241a444c5b9a324838e88f763ba993fe0163c4 Mon Sep 17 00:00:00 2001 From: Carlos A Becker Date: Tue, 8 Nov 2022 23:15:12 -0300 Subject: [PATCH] docs: add more podman details refs https://github.com/goreleaser/goreleaser/issues/3538 --- pkg/archive/targz/targz_test.go | 1 - www/docs/customization/docker.md | 6 +++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pkg/archive/targz/targz_test.go b/pkg/archive/targz/targz_test.go index 7488ae8f708..7e7154626b3 100644 --- a/pkg/archive/targz/targz_test.go +++ b/pkg/archive/targz/targz_test.go @@ -87,7 +87,6 @@ func TestTarGzFile(t *testing.T) { } require.NoError(t, err) paths = append(paths, next.Name) - t.Logf("%s: %v", next.Name, next.FileInfo().Mode()) if next.Name == "sub1/executable" { ex := next.FileInfo().Mode() | 0o111 require.Equal(t, next.FileInfo().Mode().String(), ex.String()) diff --git a/www/docs/customization/docker.md b/www/docs/customization/docker.md index ef7a8f671b5..35e19975bc4 100644 --- a/www/docs/customization/docker.md +++ b/www/docs/customization/docker.md @@ -281,5 +281,9 @@ dockers: use: podman ``` -Note that GoReleaser will not install Podman for you, nor change any of its configuration. +Note that GoReleaser will not install Podman for you, nor change any of its +configuration. + +If you want to use it rootless, make sure to follow +[this guide](https://github.com/containers/podman/blob/main/docs/tutorials/rootless_tutorial.md).