You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2020/06/05 08:48:51 UTC

[incubator-streampipes-installer] 01/03: Add enricher processor to cli services

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

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

commit f5f62f676c26619ec9e1b5912bfdbc94e1600850
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Fri Jun 5 10:47:14 2020 +0200

    Add enricher processor to cli services
---
 .../processors-enricher-jvm/docker-compose.yml     | 31 ++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/cli/services/processors-enricher-jvm/docker-compose.yml b/cli/services/processors-enricher-jvm/docker-compose.yml
new file mode 100644
index 0000000..ed340ba
--- /dev/null
+++ b/cli/services/processors-enricher-jvm/docker-compose.yml
@@ -0,0 +1,31 @@
+# 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: "2"
+services:
+  processors-filters-jvm:
+    image: ${SP_DOCKER_REGISTRY}processors-enricher-jvm:${SP_PE_VERSION}
+    depends_on:
+      - "consul"
+#    ports:
+#      - "8098:8090"
+    extra_hosts:
+      - host.docker.internal:${HOST_DOCKER_INTERNAL}
+    networks:
+      spnet:
+
+networks:
+  spnet:
+    external: true