Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DCT Plugin is configured with Enforced not Enabled #8086

Merged
1 commit merged into from
Jan 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions engine/security/trust/content_trust.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,13 +259,13 @@ specified.
logged and remain unenforced. This configuration is intended for testing of
changes related to content-trust. The results of the signature verification
is displayed in the Docker Engine's daemon logs.
* `Enabled` - Content trust will be enforced and an image that cannot be
* `Enforced` - Content trust will be enforced and an image that cannot be
verified successfully will not be pulled or run.

```
{
"content-trust": {
"mode": "enabled"
"mode": "enforced"
}
}
```
Expand All @@ -283,7 +283,7 @@ Docker images can be used. Specify:
"trust-pinning": {
"official-library-images": true
},
"mode": "enabled"
"mode": "enforced"
}
}
```
Expand Down Expand Up @@ -316,7 +316,7 @@ $ grep -r "root" ~/.docker/trust/private
]
}
},
"mode": "enabled"
"mode": "enforced"
}
}
```
Expand Down Expand Up @@ -348,7 +348,7 @@ $ docker trust inspect mydtr/user1/repo1 | jq -r '.[].AdministrativeKeys[] | sel
]
}
},
"mode": "enabled"
"mode": "enforced"
}
}
```
Expand All @@ -375,7 +375,7 @@ trust cached signature data. This is done through the
],
}
},
"mode": "enabled",
"mode": "enforced",
"allow-expired-cached-trust-data": true
}
}
Expand Down