You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by wi...@apache.org on 2020/12/02 10:52:45 UTC

[incubator-streampipes-installer] branch dev updated: [STREAMPIPES-263] add extensions-all-jvm service

This is an automated email from the ASF dual-hosted git repository.

wiener pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-installer.git


The following commit(s) were added to refs/heads/dev by this push:
     new f979bcf  [STREAMPIPES-263] add extensions-all-jvm service
f979bcf is described below

commit f979bcfae5ff3a0e3d6c1750161e442f3479a87a
Author: Patrick Wiener <wi...@fzi.de>
AuthorDate: Wed Dec 2 11:51:59 2020 +0100

    [STREAMPIPES-263] add extensions-all-jvm service
---
 .../extensions-all-jvm/docker-compose.dev.yml      | 20 +++++++++++
 .../extensions-all-jvm/docker-compose.yml          | 39 ++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/cli/deploy/standalone/extensions-all-jvm/docker-compose.dev.yml b/cli/deploy/standalone/extensions-all-jvm/docker-compose.dev.yml
new file mode 100644
index 0000000..a46712c
--- /dev/null
+++ b/cli/deploy/standalone/extensions-all-jvm/docker-compose.dev.yml
@@ -0,0 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+version: "3.4"
+services:
+  extensions-all-jvm:
+#    ports:
+#      - "8098:8090"
diff --git a/cli/deploy/standalone/extensions-all-jvm/docker-compose.yml b/cli/deploy/standalone/extensions-all-jvm/docker-compose.yml
new file mode 100644
index 0000000..2c689d7
--- /dev/null
+++ b/cli/deploy/standalone/extensions-all-jvm/docker-compose.yml
@@ -0,0 +1,39 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+version: "3.4"
+services:
+  extensions-all-jvm:
+    image: ${SP_DOCKER_REGISTRY}extensions-all-jvm:${SP_VERSION}
+    depends_on:
+      - consul
+      - backend
+      - couchdb  
+    volumes:
+      - files:/spImages
+    logging:
+      driver: "json-file"
+      options:
+        max-size: "1m"
+        max-file: "1"
+    networks:
+      spnet:
+
+volumes:
+  files:
+
+networks:
+  spnet:
+    external: true