美文网首页Docker
查看指定docker container的启动命令

查看指定docker container的启动命令

作者: BenjaminY | 来源:发表于2020-05-28 14:43 被阅读0次

    使用开源的runlike工具:

    $ pip install runlike
    
    # run the ubuntu image
    $ docker run -ti ubuntu bash
    
    $ docker ps -a  
    # suppose you get the container ID 1dfff2ba0226
    
    # Run runlike to get the docker run command. 
    $ runlike 1dfff2ba0226
    docker run --name=elated_cray -t ubuntu bash
    

    相关文章

      网友评论

        本文标题:查看指定docker container的启动命令

        本文链接:https://www.haomeiwen.com/subject/xiqaahtx.html