Skip to content

Commit 3433e85

Browse files
author
Nate Todd
committed
Update readme with new run command
Remove unnecessary /bin/bash and quote out the pwd
1 parent 8ea44e5 commit 3433e85

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ To run the video_transcoding gem in Docker, execute the following:
1414

1515
```
1616
# Docker for Mac & Linux
17-
docker run -itv `pwd`:/data ntodd/video-transcoding /bin/bash
17+
docker run -itv "`pwd`":/data ntodd/video-transcoding
1818
1919
# Docker for Windows
20-
docker run -itv C:\My\Current\Path:/data ntodd/video-transcoding /bin/bash
20+
docker run -itv C:\My\Current\Path:/data ntodd/video-transcoding
2121
```
2222

2323
This will:
@@ -27,3 +27,9 @@ This will:
2727
3. Run an interactive bash shell with access to your current directory and the video_transcoding cli tools
2828

2929
For best results on Docker for Mac or Windows, set your CPU count in preferences to the maximum available for your machine.
30+
31+
To update to the latest version:
32+
33+
```
34+
docker pull ntodd/video-transcoding:latest
35+
```

0 commit comments

Comments
 (0)