Skip to main content
How to enable StorageGRID in your environment

Install Docker for StorageGRID

Contributors

Learn how to to install Docker for StorageGRID.

To install Docker, complete the following steps:

Steps
  1. Configure the yum repo for Docker.

    sudo yum install -y yum-utils
    sudo yum-config-manager --add-repo \ https://download.docker.com/linux/rhel/docker-ce.repo
  2. Install the needed packages.

    sudo yum install docker-ce docker-ce-cli containerd.io
  3. Start Docker.

    sudo systemctl start docker
  4. Test Docker.

    sudo docker run hello-world
  5. Make sure that Docker runs on system start.

    sudo systemctl enable docker