Skip to content

Commit

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

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

## [v1.8.0] - 2020-09-30

[Vroom Changelog v1.8.0](https://github.com/VROOM-Project/vroom/blob/master/CHANGELOG.md#v180---2020-09-29)

## [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)
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.8.0-rc.1
ARG VROOM_RELEASE=v1.8.0

RUN echo "Cloning and installing vroom release ${VROOM_RELEASE}..." && \
git clone https://github.com/VROOM-Project/vroom.git && \
Expand Down
6 changes: 3 additions & 3 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.8.0-rc.1
vroomvrp/vroom-docker:v1.8.0
```

If you want to build the image yourself, run a

`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 .`
`docker build -t vroomvrp/vroom-docker:v1.8.0 --build-arg VROOM_RELEASE=v1.8.0 --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 Expand Up @@ -43,7 +43,7 @@ Add a `-v $PWD/conf:/conf` to your `docker run` command.

If you prefer to build the image from source, there are 2 build arguments:

- `VROOM_RELEASE`: specifies VROOM's git [branch](https://github.com/VROOM-Project/vroom/branches), [commit hash](https://github.com/VROOM-Project/vroom/commits/master) or [release](https://github.com/VROOM-Project/vroom/releases) (e.g. `v1.7.0`) to install in the container
- `VROOM_RELEASE`: specifies VROOM's git [branch](https://github.com/VROOM-Project/vroom/branches), [commit hash](https://github.com/VROOM-Project/vroom/commits/master) or [release](https://github.com/VROOM-Project/vroom/releases) (e.g. `v1.8.0`) to install in the container
- `VROOM_EXPRESS_RELEASE`: specifies `vroom-express`'s git [branch](https://github.com/VROOM-Project/vroom-express/branches), [commit hash](https://github.com/VROOM-Project/vroom-express/commits/master) or [release](https://github.com/VROOM-Project/vroom-express/releases) (e.g. `v0.7.0`) to install in the container

> **Note**, not all versions are compatible with each other
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.8.0-rc.1
image: vroomvrp/vroom-docker:v1.8.0
container_name: vroom
volumes:
- ./vroom-conf/:/conf
Expand Down

0 comments on commit c46c4f5

Please sign in to comment.