|
4 | 4 | Devstep comes in two flavors, you can either use the provided CLI or you can build |
5 | 5 | on top of the provided images from `Dockerfile`s. |
6 | 6 |
|
7 | | -Regardless of the flavor you choose, it is a good idea to `docker pull fgrehm/devstep:v0.3.0` |
| 7 | +Regardless of the flavor you choose, it is a good idea to `docker pull fgrehm/devstep:v0.3.1` |
8 | 8 | before creating your first container / image for a better user experience. Docker |
9 | 9 | will download that image as needed when using `Dockerfile`s but the Devstep CLI won't. |
10 | 10 |
|
@@ -40,7 +40,7 @@ line to your `~/devstep.yml` so that the image is used as a source for your proj |
40 | 40 | To install the CLI, you can run the one liner below and read on for more: |
41 | 41 |
|
42 | 42 | ```sh |
43 | | -L=$HOME/bin/devstep && curl -sL https://github.com/fgrehm/devstep-cli/releases/download/v0.3.0/linux_amd64 > $L && chmod +x $L |
| 43 | +L=$HOME/bin/devstep && curl -sL https://github.com/fgrehm/devstep-cli/releases/download/v0.3.1/linux_amd64 > $L && chmod +x $L |
44 | 44 | ``` |
45 | 45 |
|
46 | 46 | _The snippet above assumes `$HOME/bin` is on your PATH, change `$HOME/bin` to |
@@ -182,20 +182,20 @@ The `fgrehm/devstep` image is the base image used for Devstep environments and |
182 | 182 | requires you to manually trigger the build: |
183 | 183 |
|
184 | 184 | ```Dockerfile |
185 | | -FROM fgrehm/devstep:v0.3.0 |
| 185 | +FROM fgrehm/devstep:v0.3.1 |
186 | 186 |
|
187 | 187 | # Add project to the image and build it |
188 | 188 | ADD . /workspace |
189 | 189 | WORKDIR /workspace |
190 | 190 | RUN CLEANUP=1 /opt/devstep/bin/build-project /workspace |
191 | 191 | ``` |
192 | 192 |
|
193 | | -To make things easier, there's also a `fgrehm/devstep-ab:v0.3.0` image that |
| 193 | +To make things easier, there's also a `fgrehm/devstep-ab:v0.3.1` image that |
194 | 194 | does the same steps as outlined above automatically for you by leveraging `ONBUILD` |
195 | 195 | instructions, trimming down your `Dockerfile` to a single line: |
196 | 196 |
|
197 | 197 | ```Dockerfile |
198 | | -FROM fgrehm/devstep-ab:v0.3.0 |
| 198 | +FROM fgrehm/devstep-ab:v0.3.1 |
199 | 199 | ``` |
200 | 200 |
|
201 | 201 | By using a `Dockerfile` to build your images (instead of using `devstep build`) |
|
0 commit comments