Mount a Host Directory as a Data Volume
To mount a host directory on to the container
>>$ sudo docker run -d -P --name web -v /src/webapp:/opt/webapp training/webapp python app.py
This will mount the host directory, /src/webapp, into the container at /opt/webapp
To mount a host directory on to the container
>>$ sudo docker run -d -P --name web -v /src/webapp:/opt/webapp training/webapp python app.py
This will mount the host directory, /src/webapp, into the container at /opt/webapp
No comments:
Post a Comment