我运行以下Azure CLI命令:
az container create --resource-group Experimental --name my-sage
--image sagemath/sagemath-jupyter --ip-address public --ports 8888
并收到以下错误
图像'sagemath / sagemath-jupyter'的操作系统类型'null'没有 匹配容器组'my-sage'的操作系统类型'Linux'。
即使sagemath图像是基于Ubuntu Xenial图像构建的:https://github.com/sagemath/docker-images
我该如何解决这个问题?
答案 0 :(得分:1)
目前,Azure容器实例不支持此映像。您可以尝试在Azure门户上创建此映像,您将获得相同的错误日志。
请检查此official document。
Azure容器实例对于可在隔离容器中运行的任何方案(包括简单应用程序,任务自动化和构建作业)都是一个很好的解决方案。
对于您的方案,我建议您使用Azure Container Service(aks)。
答案 1 :(得分:0)