Say I have a docker image, and I deployed it on some server. But I don't want other user to access this image. Is there a good way to encrypt the docker image ?
相关问题
- Docker task in Azure devops won't accept "$(pw
- “Zero out” sensitive String data in Swift
- Unable to run mariadb when mount volume
- High cost encryption but less cost decryption
- Unspecified error (0x80004005) while running a Doc
Realistically no, if a user has permission to run the docker daemon then they are going to have access to all of the images - this is due to the elevated permissions docker requires in order to run.
See the extract from the docker security guide for more info on why this is.