VOOZH about

URL: https://qiita.com/toripiyo/items/05d627a9dd7570feda72

⇱ docker #Docker - Qiita


👁 Image
2

Go to list of users who liked

2

Share on X(Twitter)

Share on Facebook

Add to Hatena Bookmark

More than 5 years have passed since last update.

@toripiyo

docker

2
Last updated at Posted at 2014-07-20

commands

docker volume

  • show docker volume list
$ docker volume ls
DRIVER VOLUME NAME
local 0fbc052c705e8e358f1fafade763fe6688991bcd3f52c41448b9b0c733558715
local fabdc7aa22ddb84799296bf69660235dac58e41a69885f6f3ab2076f22d16455
local html
  • show volume information (volume data path can be found)
$ docker volume inspect html
[
 {
 "Driver": "local",
 "Labels": {},
 "Mountpoint": "/graph/volumes/html/_data",
 "Name": "html",
 "Options": {},
 "Scope": "local"
 }
]

docker-compose

command

  • up containers by recreating images in daemon mode
docker-compose up -d --build
2

Go to list of users who liked

2
0

Go to list of comments

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2

Go to list of users who liked

2