mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-15 20:47:36 +00:00
Previously the docker-for-mac example had a `files` declaration which wrote `/var/config/docker/daemon.json`. This was probably an error because the `/var/config` directory is owned by the `metadata` package. It used to work -- probably by accident -- but doesn't any more. This patch switches to using the metadata package to populate the `daemon.json`. Signed-off-by: David Scott <dave.scott@docker.com>
9 lines
110 B
JSON
9 lines
110 B
JSON
{
|
|
"docker": {
|
|
"daemon.json": {
|
|
"perm": "0644",
|
|
"content": "{ \"debug\": true }"
|
|
}
|
|
}
|
|
}
|