This commit is contained in:
Brian Zalewski 2023-12-06 08:23:34 +00:00
parent c10f29d0ee
commit ff55dbf7e1
2 changed files with 10 additions and 2 deletions

View file

@ -3,4 +3,5 @@
"https://index.docker.io/v1/": {} "https://index.docker.io/v1/": {}
}, },
"credsStore": "{{ if (eq .host.distro.id "darwin") }}osxkeychain{{ else }}{{ if (eq .host.distro.id "windows") }}wincred{{ else }}secretservice{{ end }}{{ end }}" "credsStore": "{{ if (eq .host.distro.id "darwin") }}osxkeychain{{ else }}{{ if (eq .host.distro.id "windows") }}wincred{{ else }}secretservice{{ end }}{{ end }}"
"currentContext": "desktop-linux"
} }

View file

@ -1,9 +1,16 @@
{{- if (eq .host.distro.family "linux") -}}
{ {
"builder": {
"gc": {
"defaultKeepStorage": "20GB"
"enabled": true
}
},
"experimental": true,
{{ if (eq .host.distro.family "linux") -}}
"runtimes": { "runtimes": {
"runsc": { "runsc": {
"path": "/usr/local/bin/runsc" "path": "/usr/local/bin/runsc"
} }
} }
{{ end -}}
} }
{{- end -}}