Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tozd/docker-sgx
A Docker image with Intel SGX support.
https://github.com/tozd/docker-sgx
docker docker-image sgx
Last synced: 3 months ago
JSON representation
A Docker image with Intel SGX support.
- Host: GitHub
- URL: https://github.com/tozd/docker-sgx
- Owner: tozd
- Archived: true
- Created: 2017-02-23T04:10:27.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-11T18:13:01.000Z (almost 6 years ago)
- Last Synced: 2024-08-02T02:10:37.131Z (6 months ago)
- Topics: docker, docker-image, sgx
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/tozd/sgx/
- Size: 12.7 KB
- Stars: 68
- Watchers: 7
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-sgx - tozd/docker-sgx - A Docker image with Intel SGX support. https://hub.docker.com/r/tozd/sgx/. (Container)
README
A Docker image with [Intel SGX](https://software.intel.com/en-us/sgx) [SDK and
PSW](https://github.com/01org/linux-sgx) (platform software, i.e., runtime).
You can use it as a base Docker image for your apps which use Intel SGX.Intel SGX [kernel module](https://github.com/01org/linux-sgx-driver) has to be loaded on the
host and you have to provide it to the container when you run it:```
docker run -d --device /dev/isgx --device /dev/mei0 --name test-sgx tozd/sgx:ubuntu-xenial
docker exec -t -i test-sgx bash
```SDK is installed under `/opt/intel/sgxsdk`. You should do:
```
source /opt/intel/sgxsdk/environment
```in your bash script to load the SDK environment.