Skip to content
This repository was archived by the owner on Jun 12, 2018. It is now read-only.

Commit a9c171f

Browse files
committed
v0.3.1
1 parent 02f4899 commit a9c171f

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

auto-build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM fgrehm/devstep:v0.3.0
1+
FROM fgrehm/devstep:v0.3.1
22

33
#####################################################################
44
# Add project to the image and build it

docs/cli/commands.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
This is the easiest way to get started with Devstep. By running the command
1616
from your project's root, Devstep will:
1717

18-
1. Create a Docker container based on `fgrehm/devstep:v0.3.0` with project
18+
1. Create a Docker container based on `fgrehm/devstep:v0.3.1` with project
1919
sources bind mounted at `/workspace`.
2020
2. Detect and install project's dependencies on the new container using the
2121
available buildpacks.
@@ -44,7 +44,7 @@ devstep hack -p 80:8080 --link postgres:db --link memcached:mc -e DEVSTEP_BUNDLE
4444

4545
By running the command from your project's root, Devstep will:
4646

47-
1. Create a Docker container based on `fgrehm/devstep:v0.3.0` with project
47+
1. Create a Docker container based on `fgrehm/devstep:v0.3.1` with project
4848
sources bind mounted at `/workspace`.
4949
2. Detect and install project's dependencies on the new container using the
5050
available buildpacks.
@@ -53,7 +53,7 @@ By running the command from your project's root, Devstep will:
5353

5454
The `devstep/<PROJECT>` images act like snapshots of your project dependencies
5555
and will be used as the source image for subsequent `devstep` commands instead
56-
of the `fgrehm/devstep:v0.3.0` image.
56+
of the `fgrehm/devstep:v0.3.1` image.
5757

5858
For example, running a `devstep hack` after building the image will use `devstep/<PROJECT>:latest`
5959
as the base container for new "hacking sessions" so that you don't have to build

docs/cli/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The available options are described below:
1212
repository: 'repo/name'
1313

1414
# The image used by devstep when building environments from scratch
15-
# DEFAULT: 'fgrehm/devstep:v0.3.0'
15+
# DEFAULT: 'fgrehm/devstep:v0.3.1'
1616
source_image: 'source/image:tag'
1717

1818
# The host cache dir that gets mounted inside the container at `/home/devstep/cache`

docs/cli/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This one liner can handle it for you assuming that `$HOME/bin` is available
1010
on your `PATH`:
1111

1212
```sh
13-
L=$HOME/bin/devstep && curl -sL https://github.com/fgrehm/devstep-cli/releases/download/v0.3.0/linux_amd64 > $L && chmod +x $L
13+
L=$HOME/bin/devstep && curl -sL https://github.com/fgrehm/devstep-cli/releases/download/v0.3.1/linux_amd64 > $L && chmod +x $L
1414
```
1515

1616
Please note that the CLI is currently limited to connecting to a local `/var/run/docker.sock`

docs/getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Devstep comes in two flavors, you can either use the provided CLI or you can build
55
on top of the provided images from `Dockerfile`s.
66

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`
88
before creating your first container / image for a better user experience. Docker
99
will download that image as needed when using `Dockerfile`s but the Devstep CLI won't.
1010

@@ -40,7 +40,7 @@ line to your `~/devstep.yml` so that the image is used as a source for your proj
4040
To install the CLI, you can run the one liner below and read on for more:
4141

4242
```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
4444
```
4545

4646
_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
182182
requires you to manually trigger the build:
183183

184184
```Dockerfile
185-
FROM fgrehm/devstep:v0.3.0
185+
FROM fgrehm/devstep:v0.3.1
186186

187187
# Add project to the image and build it
188188
ADD . /workspace
189189
WORKDIR /workspace
190190
RUN CLEANUP=1 /opt/devstep/bin/build-project /workspace
191191
```
192192

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
194194
does the same steps as outlined above automatically for you by leveraging `ONBUILD`
195195
instructions, trimming down your `Dockerfile` to a single line:
196196

197197
```Dockerfile
198-
FROM fgrehm/devstep-ab:v0.3.0
198+
FROM fgrehm/devstep-ab:v0.3.1
199199
```
200200

201201
By using a `Dockerfile` to build your images (instead of using `devstep build`)

mk-images

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
tag='v0.3.0'
5+
tag='v0.3.1'
66

77
echo "===> Building fgrehm/devstep:${tag}"
88
docker build -t fgrehm/devstep:${tag} .

0 commit comments

Comments
 (0)