Skip to content

Commit 862e065

Browse files
committed
added v1.9.1
1 parent df3f93f commit 862e065

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed

.travis.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@ env:
5050
dockerfile: "."
5151
- webmapclient_version: v1.9.0
5252
baseimage_tag: 10
53-
tag: v1.9.0,latest
53+
tag: v1.9.0
54+
dockerfile: "."
55+
- webmapclient_version: v1.9.1
56+
baseimage_tag: 10
57+
tag: v1.9.1,latest
5458
dockerfile: "."
5559
- webmapclient_version: master
5660
baseimage_tag: 10
@@ -98,7 +102,11 @@ env:
98102
dockerfile: alpine
99103
- webmapclient_version: v1.9.0
100104
baseimage_tag: 10-alpine
101-
tag: v1.9.0,latest
105+
tag: v1.9.0
106+
dockerfile: alpine
107+
- webmapclient_version: v1.9.1
108+
baseimage_tag: 10-alpine
109+
tag: v1.9.1,latest
102110
dockerfile: alpine
103111
- webmapclient_version: master
104112
baseimage_tag: 10-alpine

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://img.shields.io/travis/tum-gis/3dcitydb-web-map-docker/master.svg?label=master)](https://travis-ci.org/tum-gis/3dcitydb-web-map-docker) [![Build Status](https://img.shields.io/travis/tum-gis/3dcitydb-web-map-docker/devel.svg?label=devel)](https://travis-ci.org/tum-gis/3dcitydb-web-map-docker)
1+
[![Build Status](https://img.shields.io/travis/tum-gis/3dcitydb-web-map-docker/master.svg?label=master)](https://travis-ci.com/tum-gis/3dcitydb-web-map-docker) [![Build Status](https://img.shields.io/travis/tum-gis/3dcitydb-web-map-docker/devel.svg?label=devel)](https://travis-ci.com/tum-gis/3dcitydb-web-map-docker)
22

33
# 3D City Database Web Map Client Docker image
44

@@ -17,7 +17,7 @@ The image tags are compose of several tokens, that are explained below:
1717
* **devel** - Development version containing latest features. Built from [devel](https://github.com/3dcitydb/3dcitydb-web-map/tree/devel) branch.
1818
* **alpine** - Lightweight image version based on [Alpine Linux](https://alpinelinux.org/). All other images use the Debian operating system. The Alpine images for specific versions are named e.g. **alpine-v1.9.0**.
1919
* **experimental** - This version is built from the latest commit of the [3DCityDB Web-Map-Client Github master branch](https://github.com/3dcitydb/3dcitydb-web-map/tree/master).
20-
* **v1.1.0**, **v1.4.0**, **v1.6.0**, **v1.6.1**, **v1.6.2**, **v1.7.1**, **v1.8.0**, **v1.8.1**, **v1.8.2**, **v1.8.3**, **v1.9.0** -Built with a specific version (**vX.X.X**) of the 3DCityDB Web-Map-Client.
20+
* **v1.1.0**, **v1.4.0**, **v1.6.0**, **v1.6.1**, **v1.6.2**, **v1.7.1**, **v1.8.0**, **v1.8.1**, **v1.8.2**, **v1.8.3**, **v1.9.0**, **v1.9.1** -Built with a specific version (**vX.X.X**) of the 3DCityDB Web-Map-Client.
2121

2222
Use `docker pull tumgis/3dcitydb-web-map:TAG` to download the latest version of the image with the specified `TAG` to your system. For example: `docker pull tumgis/3dcitydb-web-map:v1.7.1`.
2323

@@ -46,9 +46,9 @@ The key features and functionalities of the 3DCityDB-Web-Map-Client is summarize
4646
* Support for collaborative creation and sharing of the workspace of the 3DCityDB-Web-Map-Client by means of generating a scene link including information about the current camera perspective, activation status of the shadow visualization, parameters of the current loaded data layers etc.
4747

4848
![3DCityDB](https://www.3dcitydb.org/3dcitydb/fileadmin/default/templates/images/logo.jpg "3DCityDB logo")
49-
> [3DCityDB Official Homepage](https://www.3dcitydb.net/)
50-
> [3DCityDB Github](https://github.com/3dcitydb)
51-
> [CityGML](https://www.citygml.org/)
49+
> [3DCityDB Official Homepage](https://www.3dcitydb.net/)
50+
> [3DCityDB Github](https://github.com/3dcitydb)
51+
> [CityGML](https://www.citygml.org/)
5252
> [3DCityDB and CityGML Hands-on Tutorial](https://www.gis.bgu.tum.de/en/projects/3dcitydb/#c1425)
5353
5454
## Quick start
@@ -63,7 +63,7 @@ This section describes how to get a 3DCityDB-Web-Map-Client container running as
6363
docker run -dit --name 3dwebmap-container -p 80:8000 tumgis/3dcitydb-web-map
6464
```
6565

66-
3. As soon as the container has started, the 3D web client will be available on your Docker host with any common Web Browser. If you run the container locally with above port settings, the landing page is available here:
66+
3. As soon as the container has started, the 3D web client will be available on your Docker host with any common Web Browser. If you run the container locally with above port settings, the landing page is available here:
6767
[http://localhost/](http://localhost/) or [http://127.0.0.1/](http://127.0.0.1/)
6868

6969
## Hosting data AND the 3D web client
@@ -92,7 +92,7 @@ docker run -dit --name 3dwebmap-container -p 80:8000 \
9292
```
9393
9494
> **Note:**
95-
> In the example above long commands are broken to several lines for readability using the Bash (`\`) or CMD (`^`) line continuation.
95+
> In the example above long commands are broken to several lines for readability using the Bash (`\`) or CMD (`^`) line continuation.
9696
9797
The data is now available in the data listing (e.g. `http://myDockerHost/data/`). Use your Browser's *Copy Link Address* feature to copy the URLs required in the 3D web client.
9898

@@ -122,7 +122,7 @@ To build a Docker image with a custom *Tomcat base image*, a specific *3DCityDB
122122
| baseimage_tag | Tag of the Node.js image to use. A list of all available tags is available [here](https://hub.docker.com/_/node/). | *10* |
123123
| webmapclient_version | Version of the 3DCityDB-Web-Map-Client to build. Any branch name or tag from the [3DCityDB-Web-Map-Client GitHub](https://github.com/3dcitydb/3dcitydb-web-map/) repo can be used. | *v1.7.1* |
124124

125-
> **Note:**
125+
> **Note:**
126126
> The build process has been tested with the `node:10` base image and `v1.7.1` of the 3DCityDB-Web-Map-Client so far.
127127

128128
Build example:

0 commit comments

Comments
 (0)