zoukankan      html  css  js  c++  java
  • Docker Machine

    Docker Machine Overview

    Estimated reading time: 4 minutes

    You can use Docker Machine to:

    • Install and run Docker on Mac or Windows
    • Provision and manage multiple remote Docker hosts
    • Provision Swarm clusters

    What is Docker Machine?

    Docker Machine is a tool that lets you install Docker Engine on virtual hosts, and manage the hosts with docker-machine commands. You can use Machine to create Docker hosts on your local Mac or Windows box, on your company network, in your data center, or on cloud providers like Azure, AWS, or Digital Ocean.

    Using docker-machine commands, you can start, inspect, stop, and restart a managed host, upgrade the Docker client and daemon, and configure a Docker client to talk to your host.

    Point the Machine CLI at a running, managed host, and you can run docker commands directly on that host. For example, run docker-machine env default to point to a host called default, follow on-screen instructions to complete env setup, and run docker psdocker run hello-world, and so forth.

    参考链接:https://docs.docker.com/machine

  • 相关阅读:
    Python装饰器理解(新手)
    vue项目随笔
    ajax 请求数据传到后台为空字符
    关于document.body.scrollTop 的谷歌,火狐浏览器兼容问题
    Nginx 反向代理解决浏览器跨域问题
    SpringBoot maven build a new demo
    UI收集
    git
    编译
    网络2
  • 原文地址:https://www.cnblogs.com/vincenshen/p/8612712.html
Copyright © 2011-2022 走看看