72 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
#
 | 
						|
# Copyright © 2016-2017 The Thingsboard Authors
 | 
						|
#
 | 
						|
# Licensed 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.
 | 
						|
#
 | 
						|
 | 
						|
FROM ubuntu:16.04 
 | 
						|
ENV ZK_USER=zookeeper \
 | 
						|
ZK_DATA_DIR=/var/lib/zookeeper/data \
 | 
						|
ZK_DATA_LOG_DIR=/var/lib/zookeeper/log \
 | 
						|
ZK_LOG_DIR=/var/log/zookeeper \
 | 
						|
JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
 | 
						|
 | 
						|
ARG GPG_KEY=C823E3E5B12AF29C67F81976F5CECB3CB5E9BD2D
 | 
						|
ARG ZK_DIST=zookeeper-3.4.9
 | 
						|
RUN set -x \
 | 
						|
    && apt-get update \
 | 
						|
    && apt-get install -y openjdk-8-jre-headless wget netcat-openbsd \
 | 
						|
	&& wget -q "http://www.apache.org/dist/zookeeper/$ZK_DIST/$ZK_DIST.tar.gz" \
 | 
						|
    && wget -q "http://www.apache.org/dist/zookeeper/$ZK_DIST/$ZK_DIST.tar.gz.asc" \
 | 
						|
    && export GNUPGHOME="$(mktemp -d)" \
 | 
						|
    && gpg --keyserver ha.pool.sks-keyservers.net --recv-key "$GPG_KEY" \
 | 
						|
    && gpg --batch --verify "$ZK_DIST.tar.gz.asc" "$ZK_DIST.tar.gz" \
 | 
						|
    && tar -xzf "$ZK_DIST.tar.gz" -C /opt \
 | 
						|
    && rm -r "$GNUPGHOME" "$ZK_DIST.tar.gz" "$ZK_DIST.tar.gz.asc" \
 | 
						|
    && ln -s /opt/$ZK_DIST /opt/zookeeper \
 | 
						|
    && rm -rf /opt/zookeeper/CHANGES.txt \
 | 
						|
    /opt/zookeeper/README.txt \
 | 
						|
    /opt/zookeeper/NOTICE.txt \
 | 
						|
    /opt/zookeeper/CHANGES.txt \
 | 
						|
    /opt/zookeeper/README_packaging.txt \
 | 
						|
    /opt/zookeeper/build.xml \
 | 
						|
    /opt/zookeeper/config \
 | 
						|
    /opt/zookeeper/contrib \
 | 
						|
    /opt/zookeeper/dist-maven \
 | 
						|
    /opt/zookeeper/docs \
 | 
						|
    /opt/zookeeper/ivy.xml \
 | 
						|
    /opt/zookeeper/ivysettings.xml \
 | 
						|
    /opt/zookeeper/recipes \
 | 
						|
    /opt/zookeeper/src \
 | 
						|
    /opt/zookeeper/$ZK_DIST.jar.asc \
 | 
						|
    /opt/zookeeper/$ZK_DIST.jar.md5 \
 | 
						|
    /opt/zookeeper/$ZK_DIST.jar.sha1 \
 | 
						|
	&& apt-get autoremove -y wget \
 | 
						|
	&& rm -rf /var/lib/apt/lists/*
 | 
						|
 | 
						|
#Copy configuration generator script to bin
 | 
						|
COPY zk-gen-config.sh zk-ok.sh /opt/zookeeper/bin/
 | 
						|
 | 
						|
# Create a user for the zookeeper process and configure file system ownership 
 | 
						|
# for nessecary directories and symlink the distribution as a user executable
 | 
						|
RUN set -x \
 | 
						|
	&& useradd $ZK_USER \
 | 
						|
    && [ `id -u $ZK_USER` -eq 1000 ] \
 | 
						|
    && [ `id -g $ZK_USER` -eq 1000 ] \
 | 
						|
    && mkdir -p $ZK_DATA_DIR $ZK_DATA_LOG_DIR $ZK_LOG_DIR /usr/share/zookeeper /tmp/zookeeper /usr/etc/ \
 | 
						|
	&& chown -R "$ZK_USER:$ZK_USER" /opt/$ZK_DIST $ZK_DATA_DIR $ZK_LOG_DIR $ZK_DATA_LOG_DIR /tmp/zookeeper \
 | 
						|
	&& ln -s /opt/zookeeper/conf/ /usr/etc/zookeeper \
 | 
						|
	&& ln -s /opt/zookeeper/bin/* /usr/bin \
 | 
						|
	&& ln -s /opt/zookeeper/$ZK_DIST.jar /usr/share/zookeeper/ \
 | 
						|
	&& ln -s /opt/zookeeper/lib/* /usr/share/zookeeper 
 |