mirror of
https://github.com/apache/druid.git
synced 2025-02-06 01:58:20 +00:00
b3dcbe70ad
* Add docker container for druid This container is an 'omnibus' (since there is such a high overlap with the various services). It includes all contrib extension as well as the msql connector. It is intended to be run as `docker run NAME SERVICE` (e.g. docker run druid:latest broker) * Add Apache license header * Resolve issues from Pull Request review * Add comments at top of script per PR comments * Revert BUILDKIT. Not available everywhere. * Don't set hostname, allow default (IP) Some environments (e.g. Kubernetes Deployments) don't resolve hostname to IP. * Switch to amd64 glibc-based busybox from 32-bit uclibc * Override service-specific configuration * Replace MAINTAINER w/ LABEL * Add mysql connector to application classpath This works around issue #3770 https://github.com/apache/incubator-druid/issues/3770 * Add docker-compose and sample environment Signed-off-by: Don Bowman <don@agilicus.com>
38 lines
951 B
Plaintext
38 lines
951 B
Plaintext
#
|
|
# 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.
|
|
|
|
.git
|
|
**/*.jar
|
|
**/*.class
|
|
dist
|
|
target
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
*.tar.gz
|
|
*.swp
|
|
*.swo
|
|
.classpath
|
|
.idea
|
|
.project
|
|
.settings/
|
|
*.log
|
|
*.DS_Store
|
|
_site
|
|
dependency-reduced-pom.xml
|