Merge "Make rally 1.7.0"

This commit is contained in:
Zuul 2019-09-10 14:24:09 +00:00 committed by Gerrit Code Review
commit 9821d662b1
2 changed files with 12 additions and 6 deletions

View File

@ -17,8 +17,14 @@ Changelog
.. Release notes for existing releases are MUTABLE! If there is something that
was missed or can be improved, feel free to change it!
[unreleased]
------------
[1.7.0] - 2019-09-10
--------------------
Changed
~~~~~~~
python jsonschema dependency is not limited by *<3.0.0* anymore and you can
use draft-7 as for now.
Removed
~~~~~~~

View File

@ -17,7 +17,7 @@ additional plugins:
# for rally user is used.
#
# Tags of the image are the same as releases of xRally/Rally
FROM xrally/xrally:1.6.0
FROM xrally/xrally:1.7.0
# "rally" user (which is selected by-default) is owner of "/rally" directory,
# so there is no need to call chown or switch the user
@ -39,8 +39,8 @@ details)
First of all, you need to pull the container. We suggest to use the last
tagged version:
# pull the 1.6.0 image (the latest release at the point of writing the note)
$ docker pull xrally/xrally:1.6.0
# pull the 1.7.0 image (the latest release at the point of writing the note)
$ docker pull xrally/xrally:1.7.0
**WARNING: never attach folders and volumes to `/rally` inside the container. It can break everything.**
@ -56,7 +56,7 @@ docker volumes or mount the directory.
* use docker volumes. It is the easiest way. You just need to do something like:
$ docker volume create --name rally_volume
$ docker run -v rally_volume:/home/rally/.rally xrally/xrally:1.6.0 env create --name "foo"
$ docker run -v rally_volume:/home/rally/.rally xrally/xrally:1.7.0 env create --name "foo"
* mount outer directory inside the container