Skip to content

Commit

Permalink
tag v1.8.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsnolde committed Sep 19, 2020
1 parent d89ff72 commit 1dcc970
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

[Vroom Changelog Unreleased](https://github.com/VROOM-Project/vroom/blob/master/CHANGELOG.md#unreleased)

## [v1.7.0] - 2020-07-09

[Vroom Changelog v1.7.0](https://github.com/VROOM-Project/vroom/blob/master/CHANGELOG.md#v170---2020-07-08)

### Added

- License file to make it clear the project is under BSD-2-Clause (#13)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN echo "Updating apt-get and installing dependencies..." && \
libasio-dev \
pkg-config

ARG VROOM_RELEASE=v1.7.0
ARG VROOM_RELEASE=v1.8.0-rc.1

RUN echo "Cloning and installing vroom release ${VROOM_RELEASE}..." && \
git clone https://github.com/VROOM-Project/vroom.git && \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ docker run -dt --name vroom \
--net host \ # or set the container name as host in config.yml and use --port 3000:3000 instead, see below
-v $PWD/conf:/conf \ # mapped volume for config & log
-e VROOM_ROUTER=ors \ # routing layer: osrm or ors
vroomvrp/vroom-docker:v1.7.0
vroomvrp/vroom-docker:v1.8.0-rc.1
```

If you want to build the image yourself, run a

`docker build -t vroomvrp/vroom-docker:v1.6.0 --build-arg VROOM_RELEASE=v1.7.0 --build-arg VROOM_EXPRESS_RELEASE=v0.7.0 .`
`docker build -t vroomvrp/vroom-docker:v1.8.0-rc.1 --build-arg VROOM_RELEASE=v1.8.0-rc.1 --build-arg VROOM_EXPRESS_RELEASE=v0.7.0 .`

> **Note**, you should have access to a self-hosted instance of OSRM or OpenRouteService for the routing server, see e.g. [`docker-compose.yml`](docker-compose.yml) for an example.
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2.4"
services:
vroom:
network_mode: host
image: vroomvrp/vroom-docker:v1.6.0
image: vroomvrp/vroom-docker:v1.8.0-rc.1
container_name: vroom
volumes:
- ./vroom-conf/:/conf
Expand Down

0 comments on commit 1dcc970

Please sign in to comment.