1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/elk/arm/elasticsearch/docker-entrypoint.sh

26 lines
702 B
Bash
Raw Normal View History

2016-11-01 08:32:49 +00:00
#!/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 "$@"