mirror of
https://github.com/apache/nifi.git
synced 2025-02-06 18:18:27 +00:00
a0655bff1a
- Initial copy of MiNiFi Java into NiFi - Checkpoint for basic integration, load empty flow without startup errors - Refactor provenance repositories, replace some MiNiFi NARs with NiFi NARs - Remove MiNiFi LICENSE, NOTICE, and KEYS, change file permissions on build.properties - Updated MiNiFi LICENSE and NOTICE files - Fix headless NiFi config, set krb5 file in MiNiFi for Kerberos support - Removed commented-out lines from POMs, added nifi-kerberos-credentials-service NAR to MiNiFi assembly - Update Git repo URLs, replace NiFi version property This closes #4933. Signed-off-by: Kevin Doran <kdoran@apache.org>
19 lines
931 B
Bash
Executable File
19 lines
931 B
Bash
Executable File
#!/bin/sh
|
|
# 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.
|
|
|
|
DOCKER_IMAGE="$(egrep -v '(^#|^\s*$|^\s*\t*#)' DockerImage.txt)"
|
|
echo "Running Docker Image: $DOCKER_IMAGE"
|
|
docker run -it -d $DOCKER_IMAGE |