Seth is packaged separately from the Hyperledger Sawtooth project. Seth provides Docker images to start up the Seth environment. In this recipe, we will install Docker on Ubuntu and start up the Seth Docker image.
Installing Hyperledger Seth with Docker on AWS
How to do it...
- Install the Docker Community Edition (CE) by following the Docker documentation. Update the apt package index as follows:
sudo apt-get update
- Install the necessary packages to allow apt to use a repository over HTTPS:
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
- Add Docker's official GPG key:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- Set up...