Skip to content
This repository was archived by the owner on Mar 21, 2022. It is now read-only.

Commit 80c6f34

Browse files
committed
Release version 1.0.0
1 parent bd2e892 commit 80c6f34

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ See [EaaS-demo-application](https://github.com/Marco01809/EaaS-demo-application)
1818

1919
The EaaS server must be able to create and run docker containers. By default it is expected that the server can access `/var/run/docker.sock`. This socket is also mounted inside the container when EaaS itself runs in Docker (as recommended). However, you can configure another Docker API endpoint through environment variables. Currently there is no support to make use of Docker Swarm or multiple Docker daemons.
2020

21-
You will need a fairly powerful machine. EaaS allows you to run multiple visualizations at the same time. We recommend 1.5 cores and 2GB RAM per running instance for ExplorViz itself when visualizing small applications. This does not include the resources used by the application in question and might not suffice for visualizing bigger applications.
21+
You will need a fairly powerful machine. We recommend 1 GiB RAM for EaaS itself. EaaS allows you to run multiple visualizations at the same time. We recommend at least 1.5 cores and 2 GiB RAM on the server per running instance for ExplorViz itself when visualizing small applications. This does not include the resources used by the application in question and might not suffice for visualizing bigger applications.
2222

2323
## Build as docker image (recommended)
2424

docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN apk --no-cache add \
4343

4444
COPY docker/entrypoint.sh /
4545
# Adjust this argument for new versions
46-
ARG JAR_FILE=explorviz-as-a-service-1.0-SNAPSHOT.jar
46+
ARG JAR_FILE=explorviz-as-a-service-1.0.0.jar
4747
# TODO: Use unpacked jar for faster startup
4848
COPY --from=builder --chown=root:root /home/build/eaas/target/${JAR_FILE} /opt/eaas/explorviz-as-a-service.jar
4949

docker/experimental.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RUN apk --no-cache add \
4848

4949
COPY docker/entrypoint.sh /
5050
# Adjust this argument for new versions
51-
ARG JAR_FILE=explorviz-as-a-service-1.0-SNAPSHOT.jar
51+
ARG JAR_FILE=explorviz-as-a-service-1.0.0.jar
5252
# TODO: Use unpacked jar for faster startup
5353
COPY --from=builder --chown=root:root /home/build/eaas/target/${JAR_FILE} /opt/eaas/explorviz-as-a-service.jar
5454

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>net.explorviz</groupId>
1414
<artifactId>explorviz-as-a-service</artifactId>
15-
<version>1.0-SNAPSHOT</version>
15+
<version>1.0.0</version>
1616
<packaging>jar</packaging>
1717

1818
<name>ExplorViz as a Service</name>

0 commit comments

Comments
 (0)