[Docker] Docker Volume


Apr 05, 2023
  • docker volume share with host

    docker run --name website -v C:\Docker\website:/usr/share/nginx/html -d -p 3000:80 nginx

  • docker volume share between containers

    docker run --name website-copy --volumes-from website -d -p 8081:80 nginx

#docker






你可能感興趣的文章

Vue.js 學習旅程Mile 4 – 模板語法之一:Mustache 語法

Vue.js 學習旅程Mile 4 – 模板語法之一:Mustache 語法

command line 指令整理:cp、tail -f、history、轉向輸出

command line 指令整理:cp、tail -f、history、轉向輸出

compose & pipe function

compose & pipe function






留言討論