Skip to content

Commit 641caea

Browse files
committed
development docker configuration uploaded
1 parent ffc4a81 commit 641caea

File tree

469 files changed

+99307
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

469 files changed

+99307
-0
lines changed

docker/Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM tomcat:7.0-jre8
2+
3+
ADD . /root/
4+
5+
RUN cp -R /root/teamengine /usr/local/tomcat/webapps/teamengine
6+
7+
RUN cp -R /root/common/*.jar /usr/local/tomcat/lib
8+
9+
ENV JAVA_OPTS="-Xms1024m -Xmx2048m -DTE_BASE=/root/te_base"
10+
11+
CMD ["catalina.sh", "run"]

docker/README.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
To build, run these docker commands from the terminal.
2+
3+
docker build -t edr10:local .
4+
5+
docker run -p 9090:8080/tcp edr10:local
6+
7+
Ignore the Errors/Exceptions at startup
8+
9+
From your browser, visit http://localhost:9090/teamengine
10+
11+
Log in with the username 'developer' and password 'developer'
12+
13+
14+
Try out the EDR API ETS with these combinations of inputs.
15+
16+
Location of the landing page : https://ogcie.iblsoft.com/edr
17+
18+
Location of OpenAPI definition document : https://ogcie.iblsoft.com/edr/api
19+
20+
Conformance class: Level 1 (Note this input is ignored)
21+
22+
Alternatively, try it out with:
23+
24+
Location of the landing page : https://data-api.mdl.nws.noaa.gov/EDR-API
25+
26+
Location of OpenAPI definition document : https://data-api.mdl.nws.noaa.gov/EDR-API/api?f=json
27+
28+
29+
Alternatively, try it out with:
30+
31+
Location of the landing page : http://labs.metoffice.gov.uk/edr
32+
33+
Location of OpenAPI definition document : http://labs.metoffice.gov.uk/edr/openapi.json
34+
35+
Conformance class: Level 1 (Note this input is ignored)
26.6 KB
Binary file not shown.
124 KB
Binary file not shown.

docker/common/jaxb-api-2.3.1.jar

125 KB
Binary file not shown.

docker/common/jaxws-api-2.0.jar

23.1 KB
Binary file not shown.
948 KB
Binary file not shown.
13.7 KB
Binary file not shown.

docker/te_base/config.xml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<config>
3+
<scripts>
4+
<!-- Sample suite: TE_BASE/scripts/note.ctl -->
5+
<organization>
6+
<name>OGC</name>
7+
8+
<standard>
9+
<name>OGC API - Tiles</name>
10+
<version>
11+
<name>0.1</name>
12+
<suite>
13+
<namespace-uri>http://www.opengis.net/cite/ogcapi-tiles-1.0</namespace-uri>
14+
<prefix>tns</prefix>
15+
<local-name>ets-ogcapi-tiles-1.0-0.1-SNAPSHOT</local-name>
16+
<title>OGC API - Tiles Conformance Test Suite</title>
17+
<description>Checks OGC API - Tiles implementations for conformance.</description>
18+
<BasicConformanceClasses>
19+
<conformanceClass>Core</conformanceClass>
20+
</BasicConformanceClasses>
21+
</suite>
22+
<revision>
23+
<name>0.1-SNAPSHOT</name>
24+
<status>Beta</status>
25+
<sources>
26+
<source>ogcapi-tiles-1.0/0.1/ctl</source>
27+
</sources>
28+
<webdir>ogcapi-tiles-1.0/0.1/site</webdir>
29+
</revision>
30+
</version>
31+
</standard>
32+
33+
</organization>
34+
</scripts>
35+
</config>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is a placeholder

0 commit comments

Comments
 (0)