Docker 完整 URL 路径
Docker full with URL path
大家好,
有人知道是否可以只从 github 中提取一个容器吗?我确实有这个 link https://github.com/aws/sagemaker-pytorch-training-toolkit
我想把容器拉到这个 link https://github.com/aws/sagemaker-pytorch-training-toolkit/tree/master/src/sagemaker_pytorch_container
.
我确实尝试过使用构建 docker build -t https://github.com/abc/sagemaker-pytorch-training-toolkit.git
来构建一个文件的映像,但是有一个 init.py
文件,我不确定它是否有必要。
谢谢
你走错了路。
- Github 不存储 docker 图像,因此您无法从那里提取它。
- AWS Sagemaker 提供 pre-built 个图像,您只需要 select 创建实例时要使用的图像即可。见 https://docs.aws.amazon.com/sagemaker/latest/dg/howitworks-create-ws.html
- 如果您需要 docker 和
pytorch
,只需 运行 docker pull pytorch/pytorch
大家好,
有人知道是否可以只从 github 中提取一个容器吗?我确实有这个 link https://github.com/aws/sagemaker-pytorch-training-toolkit
我想把容器拉到这个 link https://github.com/aws/sagemaker-pytorch-training-toolkit/tree/master/src/sagemaker_pytorch_container
.
我确实尝试过使用构建 docker build -t https://github.com/abc/sagemaker-pytorch-training-toolkit.git
来构建一个文件的映像,但是有一个 init.py
文件,我不确定它是否有必要。
谢谢
你走错了路。
- Github 不存储 docker 图像,因此您无法从那里提取它。
- AWS Sagemaker 提供 pre-built 个图像,您只需要 select 创建实例时要使用的图像即可。见 https://docs.aws.amazon.com/sagemaker/latest/dg/howitworks-create-ws.html
- 如果您需要 docker 和
pytorch
,只需 运行docker pull pytorch/pytorch