Skip to content

Commit d523361

Browse files
authored
Merge branch 'master' into patch-1
2 parents 073aabe + c856128 commit d523361

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ No need to download anything from this repository! Simply type:
1313

1414
docker run \
1515
-v /var/run/docker.sock:/var/run/docker.sock \
16-
-v D:\host\path\where\to\ouptut\singularity\image:/output \
16+
-v D:\host\path\where\to\output\singularity\image:/output \
1717
--privileged -t --rm \
1818
singularityware/docker2singularity \
1919
ubuntu:14.04
2020

21-
Replace `D:\host\path\where\to\ouptut\singularity\image` with a path on the host filesystem where your Singularity image will be created. Replace `ubuntu:14.04` with the docker image name you wish to convert (it will be pulled from Docker Hub if it does not exist on your host system).
21+
Replace `D:\host\path\where\to\output\singularity\image` with a path on the host filesystem where your Singularity image will be created. Replace `ubuntu:14.04` with the docker image name you wish to convert (it will be pulled from Docker Hub if it does not exist on your host system).
2222

2323
`docker2singularity` uses the Docker daemon located on the host system. It will access the Docker image cache from the host system avoiding having to redownload images that are already present locally.
2424

@@ -42,7 +42,7 @@ You need to use the `docker info` command to check your docker version and use i
4242

4343
docker run \
4444
-v /var/run/docker.sock:/var/run/docker.sock \
45-
-v D:\host\path\where\to\ouptut\singularity\image:/output \
45+
-v D:\host\path\where\to\output\singularity\image:/output \
4646
--privileged -t --rm \
4747
singularityware/docker2singularity:1.11 \
4848
ubuntu:14.04
@@ -54,7 +54,7 @@ If you are getting `WARNING: Non existant bind point (directory) in container: '
5454

5555
docker run \
5656
-v /var/run/docker.sock:/var/run/docker.sock \
57-
-v D:\host\path\where\to\ouptut\singularity\image:/output \
57+
-v D:\host\path\where\to\output\singularity\image:/output \
5858
--privileged -t --rm \
5959
singularityware/docker2singularity \
6060
-m "/shared_fs /custom_mountpoint2" \

docker2singularity.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ $# == 0 ] ; then
2020
echo $USAGE
2121
exit 1;
2222
fi
23-
mount_points="/oasis /projects /scratch /local-scratch /work /home1 /corral-repl /beegfs /share/PI /extra /data /oak"
23+
mount_points="/oasis /projects /scratch /local-scratch /work /home1 /corral-repl /corral-tacc /beegfs /share/PI /extra /data /oak"
2424
while getopts ':hm:' option; do
2525
case "$option" in
2626
h) echo "$USAGE"

0 commit comments

Comments
 (0)