Skip to main content
How to enable StorageGRID in your environment
简体中文版经机器翻译而成,仅供参考。如与英语版出现任何冲突,应以英语版为准。

安装适用于StorageGRID的Docker

贡献者

了解如何安装适用于StorageGRID的Docker。

要安装Docker、请完成以下步骤:

步骤
  1. 为Docker配置yum repo。

    sudo yum install -y yum-utils
    sudo yum-config-manager --add-repo \ https://download.docker.com/linux/rhel/docker-ce.repo
  2. 安装所需的软件包。

    sudo yum install docker-ce docker-ce-cli containerd.io
  3. 启动Docker。

    sudo systemctl start docker
  4. 测试Docker。

    sudo docker run hello-world
  5. 确保Docker在系统启动时运行。

    sudo systemctl enable docker