Docker - How to access a volume not attached to a container?

好久不见. 提交于 2019-12-01 05:35:55

问题


I have (had) a data container which has a volume used by other containers (--volumes-from).

The data container has accidentally been removed.

Thankfully the volume was not removed.

Is there any way I can re run the data container and point it BACK to this volume?


回答1:


Is there any way can re run the data container and point it BACK to this volume?

Sure, I detailed it in "How to recover data from a deleted Docker container? How to reconnect it to the data?"

You need to create a new container with the same VOLUME (but its path /var/lib/docker/volumes/... would be empty or with an initial content)

Then you move your legacy volume to the path of the volume of the new container.

More generally, whenever I start a data volume container, I register its volume path in a file (to reuse that path later if my container is accidentally removed)




回答2:


Not entirely sure but you might try

docker run -i -t --volumes-from yourvolume ubuntu /bin/bash

You should then be able to access the directory, i think.




回答3:


When I came to this question, my main concern was data loss. Here is how I copied data from a volume to AWS S3:

# Create a dummy container - I like Python
host$ docker run -it -v my_volume:/datavolume1 python:3.7-slim bash

# Prepare AWS stuff
# executing 'cat ~/.aws/credentials' on your development machine
# will likely show them
python:3.7-slim$ pip install awscli
python:3.7-slim$ export AWS_ACCESS_KEY_ID=yourkeyid
python:3.7-slim$ export AWS_SECRET_ACCESS_KEY=yoursecrectaccesskey

# Copy
python:3.7-slim$ aws s3 cp /datavolume1/thefile.zip s3://bucket/key/thefile.zip

Alternatively you can use aws s3 sync.

MySQL / MariaDB

My specific example was about MySQL / MariaDB. If you want to backup a database of MySQL / MariaDB, just execute

$ mysqldump -u [username] -p [database_name] \
            --single-transaction --quick --lock-tables=false \
            > db1-backup-$(date +%F).sql

You might also want to consider

  • --skip-add-drop-table: Skip the table creation if it already exists. Without this flag, the table is dropped.
  • --complete-insert: Add the column names. Without this flag, there might be a column mismatch.

To restore the backup:

$ mysql -u [username] -p [database_name] < [filename].sql


来源:https://stackoverflow.com/questions/34773572/docker-how-to-access-a-volume-not-attached-to-a-container

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!