This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
249 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
FROM openjdk:8u171-jre-slim | ||
LABEL maintainer="Snowplow Analytics Ltd. <[email protected]>" | ||
|
||
# Snowplow components will be installed in this folder. | ||
ENV SNOWPLOW_PATH="/snowplow" | ||
ENV SNOWPLOW_CONFIG_PATH="${SNOWPLOW_PATH}/config" \ | ||
SNOWPLOW_BIN_PATH="${SNOWPLOW_PATH}/bin" | ||
|
||
# Create a snowplow group and user. | ||
RUN addgroup snowplow && \ | ||
adduser --system --ingroup snowplow snowplow | ||
|
||
# Install the components common to all apps. | ||
# https://github.com/yelp/dumb-init: lightweight init system | ||
# https://github.com/tianon/gosu/: sudo replacement | ||
RUN apt-get update && \ | ||
apt-get install -y ca-certificates wget gnupg && \ | ||
rm -rf /var/lib/apt/lists && \ | ||
wget https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64.deb && \ | ||
dpkg -i dumb-init_*.deb && \ | ||
export GOSU_VERSION=1.10 && \ | ||
wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-amd64" && \ | ||
wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-amd64.asc" && \ | ||
export GNUPGHOME="$(mktemp -d)" && \ | ||
for server in $(shuf -e ha.pool.sks-keyservers.net \ | ||
hkp://p80.pool.sks-keyservers.net:80 \ | ||
keyserver.ubuntu.com \ | ||
hkp://keyserver.ubuntu.com:80 \ | ||
pgp.mit.edu) ; do \ | ||
gpg --keyserver "$server" --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && break || : ; \ | ||
done && \ | ||
gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && \ | ||
rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc && \ | ||
chmod +x /usr/local/bin/gosu && \ | ||
apt-get purge -y --auto-remove gnupg | ||
|
||
# /snowplow/bin is meant to contain the application jar. | ||
# /snowplow/config is meant to contain the necessary configuration. | ||
RUN mkdir -p ${SNOWPLOW_BIN_PATH} && \ | ||
mkdir -p ${SNOWPLOW_CONFIG_PATH} && \ | ||
chown -R snowplow:snowplow ${SNOWPLOW_PATH} | ||
|
||
# Expose the configuration directory. | ||
VOLUME ${SNOWPLOW_CONFIG_PATH} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base:0.1.0 | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base-debian:0.1.0 | ||
LABEL maintainer="Snowplow Analytics Ltd. <[email protected]>" | ||
|
||
# The version of the collector to download. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base:0.1.0 | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base-debian:0.1.0 | ||
LABEL maintainer="Snowplow Analytics Ltd. <[email protected]>" | ||
|
||
# The version of stream enrich to download. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base:0.1.0 | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base-debian:0.1.0 | ||
LABEL maintainer="Snowplow Analytics Ltd. <[email protected]>" | ||
|
||
# The version of stream enrich to download. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base:0.1.0 | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base-debian:0.1.0 | ||
LABEL maintainer="Snowplow Analytics Ltd. <[email protected]>" | ||
|
||
# The version of stream enrich to download. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base-debian:0.1.0 | ||
LABEL maintainer="Snowplow Analytics Ltd. <[email protected]>" | ||
|
||
# The version of stream enrich to download. | ||
ENV ENRICH_VERSION="0.17.0" | ||
|
||
# The targeted platform | ||
ENV PLATFORM="google_pubsub" | ||
|
||
# The name of the archive to download. | ||
ENV ARCHIVE="snowplow_stream_enrich_${PLATFORM}_${ENRICH_VERSION}.zip" | ||
|
||
# Install the Scala Stream Collector. | ||
RUN mkdir -p /tmp/build && \ | ||
cd /tmp/build && \ | ||
wget -q http://dl.bintray.com/snowplow/snowplow-generic/${ARCHIVE} && \ | ||
unzip -d ${SNOWPLOW_BIN_PATH} ${ARCHIVE} && \ | ||
cd /tmp && \ | ||
rm -rf /tmp/build | ||
|
||
# Defines an entrypoint script delegating the lauching of stream enrich to the snowplow user. | ||
# The script uses dumb-init as the top-level process. | ||
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh | ||
ENTRYPOINT [ "docker-entrypoint.sh" ] | ||
|
||
CMD [ "--help" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/dumb-init /bin/bash | ||
set -e | ||
|
||
# If the config directory has been mounted through -v, we chown it. | ||
if [ "$(stat -c %u ${SNOWPLOW_CONFIG_PATH})" != "$(id -u snowplow)" ]; then | ||
chown snowplow:snowplow ${SNOWPLOW_CONFIG_PATH} | ||
fi | ||
|
||
# Needed because of SCE's ./ip_geo file | ||
cd $(eval echo ~snowplow) | ||
|
||
# Make sure we run the collector as the snowplow user | ||
exec gosu snowplow:snowplow /usr/bin/java \ | ||
$SP_JAVA_OPTS -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap \ | ||
-jar ${SNOWPLOW_BIN_PATH}/snowplow-stream-enrich-${PLATFORM//_/-}-${ENRICH_VERSION}.jar "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base:0.1.0 | ||
LABEL maintainer="Snowplow Analytics Ltd. <[email protected]>" | ||
|
||
# The version of stream enrich to download. | ||
ENV ENRICH_VERSION="0.17.0" | ||
|
||
# The targeted platform | ||
ENV PLATFORM="kafka" | ||
|
||
# The name of the archive to download. | ||
ENV ARCHIVE="snowplow_stream_enrich_${PLATFORM}_${ENRICH_VERSION}.zip" | ||
|
||
# Install the Scala Stream Collector. | ||
RUN mkdir -p /tmp/build && \ | ||
cd /tmp/build && \ | ||
wget -q http://dl.bintray.com/snowplow/snowplow-generic/${ARCHIVE} && \ | ||
unzip -d ${SNOWPLOW_BIN_PATH} ${ARCHIVE} && \ | ||
cd /tmp && \ | ||
rm -rf /tmp/build | ||
|
||
# Defines an entrypoint script delegating the lauching of stream enrich to the snowplow user. | ||
# The script uses dumb-init as the top-level process. | ||
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh | ||
ENTRYPOINT [ "docker-entrypoint.sh" ] | ||
|
||
CMD [ "--help" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/dumb-init /bin/sh | ||
set -e | ||
|
||
# If the config directory has been mounted through -v, we chown it. | ||
if [ "$(stat -c %u ${SNOWPLOW_CONFIG_PATH})" != "$(id -u snowplow)" ]; then | ||
chown snowplow:snowplow ${SNOWPLOW_CONFIG_PATH} | ||
fi | ||
|
||
# Needed because of SCE's ./ip_geo file | ||
cd $(eval echo ~snowplow) | ||
|
||
# Make sure we run the collector as the snowplow user | ||
exec su-exec snowplow:snowplow /usr/bin/java \ | ||
$SP_JAVA_OPTS -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap \ | ||
-jar ${SNOWPLOW_BIN_PATH}/snowplow-stream-enrich-${PLATFORM}-${ENRICH_VERSION}.jar "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM snowplow-docker-registry.bintray.io/snowplow/base:0.1.0 | ||
LABEL maintainer="Snowplow Analytics Ltd. <[email protected]>" | ||
|
||
# The version of stream enrich to download. | ||
ENV ENRICH_VERSION="0.17.0" | ||
|
||
# The targeted platform | ||
ENV PLATFORM="kinesis" | ||
|
||
# The name of the archive to download. | ||
ENV ARCHIVE="snowplow_stream_enrich_${PLATFORM}_${ENRICH_VERSION}.zip" | ||
|
||
# Install the Scala Stream Collector. | ||
RUN mkdir -p /tmp/build && \ | ||
cd /tmp/build && \ | ||
wget -q http://dl.bintray.com/snowplow/snowplow-generic/${ARCHIVE} && \ | ||
unzip -d ${SNOWPLOW_BIN_PATH} ${ARCHIVE} && \ | ||
cd /tmp && \ | ||
rm -rf /tmp/build | ||
|
||
# Defines an entrypoint script delegating the lauching of stream enrich to the snowplow user. | ||
# The script uses dumb-init as the top-level process. | ||
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh | ||
ENTRYPOINT [ "docker-entrypoint.sh" ] | ||
|
||
CMD [ "--help" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/dumb-init /bin/sh | ||
set -e | ||
|
||
# If the config directory has been mounted through -v, we chown it. | ||
if [ "$(stat -c %u ${SNOWPLOW_CONFIG_PATH})" != "$(id -u snowplow)" ]; then | ||
chown snowplow:snowplow ${SNOWPLOW_CONFIG_PATH} | ||
fi | ||
|
||
# Needed because of SCE's ./ip_geo file | ||
cd $(eval echo ~snowplow) | ||
|
||
# Make sure we run the collector as the snowplow user | ||
exec su-exec snowplow:snowplow /usr/bin/java \ | ||
$SP_JAVA_OPTS -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap \ | ||
-jar ${SNOWPLOW_BIN_PATH}/snowplow-stream-enrich-${PLATFORM}-${ENRICH_VERSION}.jar "$@" |
Oops, something went wrong.