Skip to content

Commit

Permalink
Merge pull request #25 from kaczmarj/patch/readme
Browse files Browse the repository at this point in the history
ref: remove leading spaces in `docker run` command
  • Loading branch information
chrisgorgo committed Oct 17, 2017
2 parents d174cad + 332498a commit 890209e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ Are you developing Docker images and you would like to run them on an HPC cluste

No need to download anything from this repository! Simply type:

docker run \
-v /var/run/docker.sock:/var/run/docker.sock \
-v D:\host\path\where\to\output\singularity\image:/output \
--privileged -t --rm \
singularityware/docker2singularity \
ubuntu:14.04
```
docker run \
-v /var/run/docker.sock:/var/run/docker.sock \
-v D:\host\path\where\to\output\singularity\image:/output \
--privileged -t --rm \
singularityware/docker2singularity \
ubuntu:14.04
```

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).

Expand Down

0 comments on commit 890209e

Please sign in to comment.