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

Commit

Permalink
Merge branch 'release/v3.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
elssar committed Jan 9, 2017
2 parents 6e79dab + ef5dd77 commit 121396d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -79,7 +79,7 @@ directory of your collection files into that location and provide the file refer
```terminal
# Mount host collections folder ~/collections, onto /etc/newman on the docker image, so that newman
# has access to collections
docker run -v ~/collections:/etc/newman -t postman/newman_ubuntu_1404 --collection="HTTPBinNewmanTestNoEnv.json.postman_collection"
docker run -v ~/collections:/etc/newman -t postman/newman_ubuntu1404 --collection="HTTPBinNewmanTestNoEnv.json.postman_collection"
```

You are not required to mount a volume if you do not need to save newman report to the host, and your collection is
Expand Down Expand Up @@ -112,7 +112,7 @@ docker run -v ~/collections:/etc/newman -t postman/newman_ubuntu1404 \
<br />Import a Postman backup file, and save collections, environments, and globals

```terminal
docker run -v ~/collections:/etc/newman -t postman/ubuntu_1404 --import="Backup.postman_dump" --pretty
docker run -v ~/collections:/etc/newman -t postman/newman_ubuntu1404 --import="Backup.postman_dump" --pretty
```

<br />Use a script to run a collection and do something, for example deploy the build, if all the tests pass
Expand Down
2 changes: 1 addition & 1 deletion images/alpine33/Dockerfile
Expand Up @@ -13,7 +13,7 @@ ENV LANGUAGE en_US.UTF-8
RUN apk add --update nodejs=${NODE_VERSION}-r0;

# Set newman version
ENV NEWMAN_VERSION 3.2.0
ENV NEWMAN_VERSION 3.3.0

# Install newman
RUN npm install -g newman@${NEWMAN_VERSION};
Expand Down
4 changes: 2 additions & 2 deletions images/alpine33/README.md
@@ -1,6 +1,6 @@
# newman_alpine33

This image runs newman 3.2.0 on node 4.3.0 on Alpine 3.3
This image runs newman 3.3.0 on node 4.3.0 on Alpine 3.3

Build the image,

Expand All @@ -11,7 +11,7 @@ docker build -t postman/newman_alpine33 .
Or get it from [docker hub](https://registry.hub.docker.com/u/postman/newman_alpine33/)

```terminal
docker pull postman/newman_alpine33:3.2.0
docker pull postman/newman_alpine33:3.3.0
```

then run it
Expand Down
2 changes: 1 addition & 1 deletion images/ubuntu1404/Dockerfile
Expand Up @@ -19,7 +19,7 @@ RUN npm install -g n;
RUN n ${NODE_VERSION};

# Set newman version
ENV NEWMAN_VERSION 3.2.0
ENV NEWMAN_VERSION 3.3.0

# Install newman
RUN npm install -g newman@${NEWMAN_VERSION};
Expand Down
4 changes: 2 additions & 2 deletions images/ubuntu1404/README.md
@@ -1,6 +1,6 @@
# newman_ubuntu1404

This image runs newman 3.2.0 on node 4.3.0 on Ubuntu 14.04.2
This image runs newman 3.3.0 on node 4.3.0 on Ubuntu 14.04.2

Build the image,

Expand All @@ -11,7 +11,7 @@ docker build -t postman/newman_ubuntu1404 .
Or get it from [docker hub](https://registry.hub.docker.com/u/postman/newman_ubuntu1404/)

```terminal
docker pull postman/newman_ubuntu1404:3.2.0
docker pull postman/newman_ubuntu1404:3.3.0
```

then run it
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "newman-docker",
"version": "3.2.0",
"version": "3.3.0",
"description": "This repository contains the Dockerfiles and tests for the Newman Docker images.",
"scripts": {
"update": "./scripts/update/update.sh",
Expand Down

0 comments on commit 121396d

Please sign in to comment.