mirror of
https://github.com/docker/docs.git
synced 2026-03-31 16:28:59 +07:00
This fix fixes a couple of issues in Get Started docs' Step Four: 1. `Sending build context to Docker daemon 158.8 MB` should be `Sending build context to Docker daemon 2.048 kB` as there is only one Dockerfile for context. 2. There are only 3 steps altogether in stead of 4 steps as `RUN apt-get -y update && apt-get install -y fortunes` is one step. So `Step 3 : RUN apt-get install -y fortunes` should be removed and `Step 4 : CMD /usr/games/fortune -a | cowsay` should be changed to `Step 3 : CMD /usr/games/fortune -a | cowsay` Signed-off-by: Yong Tang <yong.tang.github@outlook.com> (cherry picked from commit 1cd06fdd1ac5ce1f91291330d9f89679468ce393) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>