The path to docker's volumes in UbuntuCreate USB installer to install Ubuntu from the command line?Will new ubuntu install be able to read/write to software raid 5 array created by a previous install?Samba server synchronisationDon't run this as Root! - Docker ImageHow to access ubuntu machine from another networkAlternative to Docker that is less restrictive for maintaining package dependencies
Why don't the absolute value functions in C accept const inputs?
Do features such as Timeless Body remove the requirement of eating/drinking during a long rest to remove a level of exhaustion?
How can I remove the remains of the Mass Contact module not properly uninstalled?
What's the greatest number of hands I can have to annoy my mother-in-law with?
Why are bicycle tires incapable of maintaining pressure over time, while car tyres seem to have less of a problem?
Is it possible for nature to create bubble wrap?
What Lego set has the biggest box?
Is the weight of the aircraft flying in the sky transferred to the ground?
Can the President be impeached twice?
Do the Jovians in "Victory Unintentional" exist in Isaac Asimov's Foundation series?
Is it possible to kill parasitic worms by intoxicating oneself?
Why is 1>a.txt 2>&1 different from 1>a.txt 2>a.txt ? (Example shown)
Finding the right insults
Sleep for 1000 years
"Sack" data structure in C#
Canonical form of list of Integers
How to prevent discontent among the players when one player murders the others' characters?
Sudden cheap travel?
What is the narrative difference between a Charisma and Wisdom saving throw?
Can I ignore an open source license if I checkout a version that was released prior to the code having any license?
I am ask to complete my withdrawal transaction with COT fee of 1200 dollars
Is Kirk’s comment about “LDS” intended to be a religious joke?
How do I prep a, temporary, root login before editing sudoers?
Do photons have kinetic energy?
The path to docker's volumes in Ubuntu
Create USB installer to install Ubuntu from the command line?Will new ubuntu install be able to read/write to software raid 5 array created by a previous install?Samba server synchronisationDon't run this as Root! - Docker ImageHow to access ubuntu machine from another networkAlternative to Docker that is less restrictive for maintaining package dependencies
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I'm both new to Ubuntu and Docker. I cut to the chase, when I create a volume using the sudo docker volume create TEST command, where should I expect to find the TEST volume and its data in my hard drive?
If I want it to be located in another drive, lets say D: (still new to ubuntu not sure if it also applies to linux) drive, what do I have to do?
server docker
add a comment
|
I'm both new to Ubuntu and Docker. I cut to the chase, when I create a volume using the sudo docker volume create TEST command, where should I expect to find the TEST volume and its data in my hard drive?
If I want it to be located in another drive, lets say D: (still new to ubuntu not sure if it also applies to linux) drive, what do I have to do?
server docker
add a comment
|
I'm both new to Ubuntu and Docker. I cut to the chase, when I create a volume using the sudo docker volume create TEST command, where should I expect to find the TEST volume and its data in my hard drive?
If I want it to be located in another drive, lets say D: (still new to ubuntu not sure if it also applies to linux) drive, what do I have to do?
server docker
I'm both new to Ubuntu and Docker. I cut to the chase, when I create a volume using the sudo docker volume create TEST command, where should I expect to find the TEST volume and its data in my hard drive?
If I want it to be located in another drive, lets say D: (still new to ubuntu not sure if it also applies to linux) drive, what do I have to do?
server docker
server docker
asked Jun 5 '18 at 0:31
TranscendentTranscendent
1651 gold badge2 silver badges6 bronze badges
1651 gold badge2 silver badges6 bronze badges
add a comment
|
add a comment
|
2 Answers
2
active
oldest
votes
Looks like it is /var/lib/docker/volumes
Here's what I got:
$ docker volume create TEST
$ ls /var/lib/docker/volumes
metadata.db TEST/
add a comment
|
If you're working on WSL2 through Docker Desktop for Windows, volumes will be found here:
/var/data/docker-desktop/default/daemon-data
If you are working on actual Ubuntu, then yes, as the above answer said it will be located in
/var/lib/docker/volumes
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1043661%2fthe-path-to-dockers-volumes-in-ubuntu%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Looks like it is /var/lib/docker/volumes
Here's what I got:
$ docker volume create TEST
$ ls /var/lib/docker/volumes
metadata.db TEST/
add a comment
|
Looks like it is /var/lib/docker/volumes
Here's what I got:
$ docker volume create TEST
$ ls /var/lib/docker/volumes
metadata.db TEST/
add a comment
|
Looks like it is /var/lib/docker/volumes
Here's what I got:
$ docker volume create TEST
$ ls /var/lib/docker/volumes
metadata.db TEST/
Looks like it is /var/lib/docker/volumes
Here's what I got:
$ docker volume create TEST
$ ls /var/lib/docker/volumes
metadata.db TEST/
answered Jun 5 '18 at 3:09
theferrit32theferrit32
4513 silver badges7 bronze badges
4513 silver badges7 bronze badges
add a comment
|
add a comment
|
If you're working on WSL2 through Docker Desktop for Windows, volumes will be found here:
/var/data/docker-desktop/default/daemon-data
If you are working on actual Ubuntu, then yes, as the above answer said it will be located in
/var/lib/docker/volumes
add a comment
|
If you're working on WSL2 through Docker Desktop for Windows, volumes will be found here:
/var/data/docker-desktop/default/daemon-data
If you are working on actual Ubuntu, then yes, as the above answer said it will be located in
/var/lib/docker/volumes
add a comment
|
If you're working on WSL2 through Docker Desktop for Windows, volumes will be found here:
/var/data/docker-desktop/default/daemon-data
If you are working on actual Ubuntu, then yes, as the above answer said it will be located in
/var/lib/docker/volumes
If you're working on WSL2 through Docker Desktop for Windows, volumes will be found here:
/var/data/docker-desktop/default/daemon-data
If you are working on actual Ubuntu, then yes, as the above answer said it will be located in
/var/lib/docker/volumes
answered Oct 1 at 5:40
pantsmepantsme
11 bronze badge
11 bronze badge
add a comment
|
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1043661%2fthe-path-to-dockers-volumes-in-ubuntu%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown