diff --git a/README.md b/README.md index 03687e8..ba8c81e 100644 --- a/README.md +++ b/README.md @@ -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 @@ -112,7 +112,7 @@ docker run -v ~/collections:/etc/newman -t postman/newman_ubuntu1404 \
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 ```
Use a script to run a collection and do something, for example deploy the build, if all the tests pass diff --git a/images/alpine33/Dockerfile b/images/alpine33/Dockerfile index 825366f..918b5c2 100644 --- a/images/alpine33/Dockerfile +++ b/images/alpine33/Dockerfile @@ -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}; diff --git a/images/alpine33/README.md b/images/alpine33/README.md index 64eef5a..1db4ed4 100644 --- a/images/alpine33/README.md +++ b/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, @@ -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 diff --git a/images/ubuntu1404/Dockerfile b/images/ubuntu1404/Dockerfile index 7b8d502..62ecf04 100644 --- a/images/ubuntu1404/Dockerfile +++ b/images/ubuntu1404/Dockerfile @@ -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}; diff --git a/images/ubuntu1404/README.md b/images/ubuntu1404/README.md index 2606dd9..167e58e 100644 --- a/images/ubuntu1404/README.md +++ b/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, @@ -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 diff --git a/package.json b/package.json index 241ed53..ad2f10a 100644 --- a/package.json +++ b/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",