Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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.