From cc805bd29130401b08766c62e43fdd6e2fda9b3a Mon Sep 17 00:00:00 2001 From: Daryl Date: Fri, 2 Feb 2018 11:05:38 -0500 Subject: [PATCH] Fix docker exec command docker exec requires two arguments, so I believe that `docker exec -it samba.sh` should be changed to `docker exec -it samba sh` to run the 'sh' shell in the container named samba. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c5dc68f..bb90ec5 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ will also want to expose port 137 and 138 with `-p 137:137/udp -p 138:138/udp`. ## Examples Any of the commands can be run at creation with `docker run` or later with -`docker exec -it samba.sh` (as of version 1.3 of docker). +`docker exec -it samba sh` (as of version 1.3 of docker). ### Setting the Timezone @@ -110,4 +110,4 @@ Any of the commands can be run at creation with `docker run` or later with ## Issues If you have any problems with or questions about this image, please contact me -through a [GitHub issue](https://github.com/dperson/samba/issues). \ No newline at end of file +through a [GitHub issue](https://github.com/dperson/samba/issues).