automation-tests/cmd/podman/remoteclientconfig/config_darwin.go

13 lines
238 B
Go

package remoteclientconfig
import (
"path/filepath"
"github.com/docker/docker/pkg/homedir"
)
func getConfigFilePath() string {
homeDir := homedir.Get()
return filepath.Join(homeDir, ".config", "containers", remoteConfigFileName)
}