docker
镜像的迁移:导出和导入镜像
查看镜像:
[rootdocker ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE centos latest 5d0da3dc9764 2 years ago 231MB
打包
将镜像打包,找到save,可以将…
1.代码
from typing import List
class Solution:def permute(self, nums: List[int]) -> List[List[int]]:result: List[List[int]] [] length len(nums)def fill(n: int, nums: List[int]):if n length:result.append(nums[:]) returnfor i in range(n, length):num…