To activate the Docker Enterprise Edition (EE) license, do the following:
- Download and copy the Docker license key (docker_subscription.lic) to your local Docker host.
- Activate the license key.
[root@12c-docker ~] # sudo docker engine activate –license docker_subscription.lic
- Verify that the license key has been successfully applied.
[root@12c-docker ~] #docker info
- Pull a sample “Hello-World” image to validate Docker.
[root@12c-docker ~] #docker pull hello-world
- Run “hello-world”.
[root@12c-docker ~] #docker run hello-world