Skip to content

Commit

Permalink
prepare release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomzo committed Sep 6, 2020
1 parent b39095b commit d1c892e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.10.0 (2020-Sep-06)

* Added support for [homebrew on Linux](https://github.com/kudulab/dojo/pull/20). Thanks to [Justin Garrison](https://github.com/rothgar)

### 0.9.0 (2020-Aug-13)

* support exported bash functions [#17](https://github.com/kudulab/dojo/issues/17).
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ A dojo docker image becomes a contract of what is a **correct environment** for
# Quickstart

1. [Install docker](https://docs.docker.com/install/), if you haven't already.
2. Install Dojo, it is a self-contained binary, so just place it somewhere on the `PATH`. On OSX you can use `brew install kudulab/homebrew-dojo-osx/dojo`.
2. Install Dojo, it is a self-contained binary, so just place it somewhere on the `PATH`. You can also use use brew: `brew install kudulab/homebrew-dojo-osx/dojo`.

#### On Linux
```bash
DOJO_VERSION=0.9.0
DOJO_VERSION=0.10.0
wget -O dojo https://github.com/kudulab/dojo/releases/download/${DOJO_VERSION}/dojo_linux_amd64
sudo mv dojo /usr/local/bin
sudo chmod +x /usr/local/bin/dojo
```

#### On OSX
#### Using brew - on OSX or Linux
```bash
DOJO_VERSION=0.9.0
DOJO_VERSION=0.10.0
wget -O dojo https://github.com/kudulab/dojo/releases/download/${DOJO_VERSION}/dojo_darwin_amd64
mv dojo /usr/local/bin
chmod +x /usr/local/bin/dojo
Expand Down Expand Up @@ -129,7 +129,7 @@ brew install kudulab/homebrew-dojo-osx/dojo
```
A manual install is another option:
```sh
version="0.9.0"
version="0.10.0"
# on Linux:
wget -O /tmp/dojo https://github.com/kudulab/dojo/releases/download/${version}/dojo_linux_amd64
# or on Darwin:
Expand Down Expand Up @@ -171,7 +171,7 @@ We have also established several **best practices** for dojo image development:
Dojo provides [several scripts](image_scripts/src) to be used inside dojo images to meet most of above requirements. Scripts can be installed in a `Dockerfile` with:

```dockerfile
ENV DOJO_VERSION=0.9.0
ENV DOJO_VERSION=0.10.0
RUN git clone --depth 1 -b ${DOJO_VERSION} https://github.com/kudulab/dojo.git /tmp/dojo_git &&\
/tmp/dojo_git/image_scripts/src/install.sh && \
rm -r /tmp/dojo_git
Expand Down Expand Up @@ -201,7 +201,7 @@ ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN chmod +x /tini

# Install common Dojo scripts
ENV DOJO_VERSION=0.9.0
ENV DOJO_VERSION=0.10.0
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
sudo git ca-certificates && \
Expand Down Expand Up @@ -249,7 +249,7 @@ For alpine images a typical dockerfile has following structure:
FROM alpine:3.9

# Install common Dojo scripts
ENV DOJO_VERSION=0.9.0
ENV DOJO_VERSION=0.10.0
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories && \
apk add --no-cache tini bash shadow sudo git && \
git clone --depth 1 -b ${DOJO_VERSION} https://github.com/kudulab/dojo.git /tmp/dojo_git &&\
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package main
const DojoVersion = "0.9.0"
const DojoVersion = "0.10.0"

0 comments on commit d1c892e

Please sign in to comment.