1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/elk/arm/elasticsearch/docker-entrypoint.sh
2016-11-01 16:32:49 +08:00

26 lines
702 B
Bash
Executable File

#!/bin/bash
set -e
export PATH=/opt/elasticsearch/bin:$PATH
# Add elasticsearch as command if needed
if [ "${1:0:1}" = '-' ]; then
set -- elasticsearch "$@"
fi
# Drop root privileges if we are running elasticsearch
# allow the container to be started with `--user`
if [ "$1" = 'elasticsearch' -a "$(id -u)" = '0' ]; then
# Change the ownership of /opt/elasticsearch/data to elasticsearch
chown -R elasticsearch:elasticsearch /opt/elasticsearch/data
set -- gosu elasticsearch "$@"
#exec gosu elasticsearch "$BASH_SOURCE" "$@"
fi
# As argument is not related to elasticsearch,
# then assume that user wants to run his own process,
# for example a `bash` shell to explore this image
exec "$@"