Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

mount docker volume in container

sudo docker volume ls

docker volume create <VOLUME NAME>

sudo docker volume inspect <VOLUME NAME>

docker run -it -v <VOLUME NAME>:/shared-volume --name my-container-01 ubuntu




Comment

docker mount volume

docker run -v /host/directory:/container/directory -other -options image_name command_to_run
Comment

docker mount volume

# create volume named ubuntu_data
volume create ubuntu_data

# inspect the volume created
docker volume inspect ubuntu_data

# attach the ubutu_data volume to a folder named volume_data 
# in ubuntu then run ubuntu container by image name
docker run -it -v ubuntu_data:/volume_data ubuntu

# stop all docker running activities
docker system prune

# list all volumes for docker
docker volume ls

# delete the volume named ubuntu_data is no longer used
docker volume -rm ubuntu_data
Comment

docker mount volume

docker run -it --rm -p 10001:8888 -v "{current directory(pwd)}":/home/jovyan/work jupyter/datascience-notebook:6b49f3337709
Comment

volume mount docker

$ docker service create -d 
  --replicas=4 
  --name devtest-service 
  --mount source=myvol2,target=/app 
  nginx:latest
Comment

PREVIOUS NEXT
Code Example
Shell :: blackeye linux 
Shell :: bash blackeye 
Shell :: check maven version in ubuntu 
Shell :: git commands 
Shell :: how to use string format in powershell 
Shell :: open calculator from command line MacOS 
Shell :: how to move a directory in linux 
Shell :: install virtualbox on ubuntu 
Shell :: linux unzip command 
Shell :: unable to install mongodb on ubuntu 22.04 
Shell :: shell trim 
Shell :: command not found: yarn 
Shell :: install linux subsystem windows 10 
Shell :: Delete all running and stopped containers 
Shell :: kubernetes command line to scale down pods 
Shell :: install rollup locally 
Shell :: bash string length 
Shell :: ubuntu uninstall fonts 
Shell :: kubectl neat 
Shell :: bluetooth software for linux 
Shell :: is ubuntu debian 
Shell :: unikey ubuntu 20.04 
Shell :: print environment variables linux 
Shell :: install ionic native run 
Shell :: gcc 7 install ubuntu 
Shell :: bash check length of variable 
Shell :: quarkus install cli 
Shell :: apache2 .htaccess not writable 
Shell :: how to change the web default browser in linux 
Shell :: unmount linux disk 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =