Skip to content

Commit 332498a

Browse files
author
Jakub Kaczmarzyk
authored
ref: remove leading spaces in docker run command
Leading spaces in the `docker run` command prevented successful copy+paste into terminal.
1 parent d174cad commit 332498a

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ Are you developing Docker images and you would like to run them on an HPC cluste
1111

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

14-
docker run \
15-
-v /var/run/docker.sock:/var/run/docker.sock \
16-
-v D:\host\path\where\to\output\singularity\image:/output \
17-
--privileged -t --rm \
18-
singularityware/docker2singularity \
19-
ubuntu:14.04
14+
```
15+
docker run \
16+
-v /var/run/docker.sock:/var/run/docker.sock \
17+
-v D:\host\path\where\to\output\singularity\image:/output \
18+
--privileged -t --rm \
19+
singularityware/docker2singularity \
20+
ubuntu:14.04
21+
```
2022

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

0 commit comments

Comments
 (0)