mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ec87479b7e
Please refer to `docs/rootless.md`. TLDR: * Make sure `/etc/subuid` and `/etc/subgid` contain the entry for you * `dockerd-rootless.sh --experimental` * `docker -H unix://$XDG_RUNTIME_DIR/docker.sock run ...` Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
Go
// +build !linux
|
|
|
|
package homedir // import "github.com/docker/docker/pkg/homedir"
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// GetStatic is not needed for non-linux systems.
|
|
// (Precisely, it is needed only for glibc-based linux systems.)
|
|
func GetStatic() (string, error) {
|
|
return "", errors.New("homedir.GetStatic() is not supported on this system")
|
|
}
|
|
|
|
// GetRuntimeDir is unsupported on non-linux system.
|
|
func GetRuntimeDir() (string, error) {
|
|
return "", errors.New("homedir.GetRuntimeDir() is not supported on this system")
|
|
}
|
|
|
|
// StickRuntimeDirContents is unsupported on non-linux system.
|
|
func StickRuntimeDirContents(files []string) ([]string, error) {
|
|
return nil, errors.New("homedir.StickRuntimeDirContents() is not supported on this system")
|
|
}
|
|
|
|
// GetDataHome is unsupported on non-linux system.
|
|
func GetDataHome() (string, error) {
|
|
return "", errors.New("homedir.GetDataHome() is not supported on this system")
|
|
}
|
|
|
|
// GetConfigHome is unsupported on non-linux system.
|
|
func GetConfigHome() (string, error) {
|
|
return "", errors.New("homedir.GetConfigHome() is not supported on this system")
|
|
}
|