Skip to content

Commit a22ae6f

Browse files
authored
Merge pull request #30 from markeganfuller/fix_incorrect_usage_of_size
Fix incorrect usage of --size.
2 parents ce507e5 + 8fb8993 commit a22ae6f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pages/docs/user-docs/docs-docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The core of a Docker image is basically a compressed set of files, a set of `.ta
1717
The Docker engine communicates with the Docker Hub via the <a href="https://docs.docker.com/engine/reference/api/docker_remote_api/" target="_blank">Docker Remote API</a>, and guess what, we can too! The easiest thing to do is create an image, and then pipe a Docker image directly into it from the Docker Registry. This first method does not require having Docker installed on your machine. Let's say that I want to bootstrap tensorflow from Docker. First I should create the tensorflow image:
1818

1919
```bash
20-
sudo singularity create --size=4000 tensorflow.img
20+
sudo singularity create --size 4000 tensorflow.img
2121
sudo singularity import tensorflow.img docker://tensorflow/tensorflow:latest
2222
tensorflow/tensorflow:latest
2323
Downloading layer: sha256:a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4

0 commit comments

Comments
 (0)