DockerToolBox file mounting implementation code

DockerToolBox file mounting implementation code

When using docker, you may find that the file cannot be mounted. This is related to the shared folder settings of the virtual machine, and you must pay attention to certain things when setting it up. Otherwise, even if the shared folder is set up, it cannot be mounted.

First, open Oracle VM VirtualBox, select the default virtual machine, right-click to open the settings interface (as shown in the figure), and select the shared folder. Set up as follows:

Enter this command in cmd, which corresponds to the first shared folder

docker run -v /c/Users/test:/test -t -i ubuntu /bin/bash

Look at this one again, it corresponds to the second shared folder

docker run -v /code/test:/test -t -i ubuntu /bin/bash

It can be seen that c/Users in the directory after -v is the name of the shared folder. This means that when you write the directory to be mounted, you need to replace the real directory with the name of the shared folder. You cannot write it as docker run -v /e/file/AICS/code/test:/test -t -i ubuntu /bin/bash, otherwise it will not be mounted.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of how to mount local directories on Docker and implement file sharing
  • Detailed explanation of how to mount the file system in a running Docker container

<<:  How to use Javascript to generate smooth curves

>>:  MySQL 5.7.18 zip version installation tutorial

Recommend

Implementation steps for docker deployment lnmp-wordpress

Table of contents 1. Experimental Environment 2. ...

React passes parameters in several ways

Table of contents Passing parameters between pare...

Install Ubuntu 18 without USB drive under Windows 10 using EasyUEFI

1. Check BIOS First check which startup mode your...

Implementation steps for Docker deployment of SpringBoot applications

Table of contents Preface Dockerfile What is a Do...

Vue implements interface sliding effect

This article example shares the specific code of ...

mysql 5.6.23 winx64.zip installation detailed tutorial

For detailed documentation on installing the comp...

Detailed explanation of cocoscreater prefab

Table of contents Prefab How to create a prefab T...

Summary of examples of common methods of JavaScript arrays

Table of contents Common array methods concat() M...

UrlRewriter caching issues and a series of related explorations

When developing a website function, the session c...

Analysis of different MySQL table sorting rules error

The following error is reported when MySQL joins ...

What hidden attributes in the form can be submitted with the form

The form elements with visibility=hidden and displ...

Founder font library Chinese and English file name comparison table

Founder Type Library is a font library developed ...

About WeChat Mini Program to implement cloud payment

Table of contents 1. Introduction 2. Thought Anal...

Sample code for easily implementing page layout using flex layout

Without further ado, let's get straight to th...