Skip to content

Commit

Permalink
Merge pull request #8086 from ollypom/dctenforcednotenabled
Browse files Browse the repository at this point in the history
DCT Plugin is configured with Enforced not Enabled
  • Loading branch information
L-Hudson committed Jan 28, 2019
2 parents 9c4de0b + cfec527 commit 7a6c818
Showing 1 changed file with 6 additions and 6 deletions.
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

0 comments on commit 7a6c818

Please sign in to comment.