summaryrefslogtreecommitdiff
path: root/cmd/podman/remoteclientconfig/config_darwin.go
blob: b94941381b653bfc265bd4747ae176d2be93278e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package remoteclientconfig

import (
	"path/filepath"

	"github.com/docker/docker/pkg/homedir"
)

func getConfigFilePath() string {
	homeDir := homedir.Get()
	return filepath.Join(homeDir, ".config", "containers", remoteConfigFileName)
}