Hello. I have created a canvas and would like to make sure anyone using my docker-compose file has it as soon as the ELK stack initializes.
For that purpose I wrote the following script:
FROM kibana:7.9.1
COPY script.sh /scripts/script.sh
ENTRYPOINT /scripts/script.sh
And I call this from docker-compose.yml:
kibana:
build: ./kibana
The problem is that when using docker-compose build and the docker compose up all I see is WAITING printed on the console, this tells me that the script is being called but for some reason kibana fails to initiate.
Is there anyway this can be done? (calling a curl right after kibana has started)
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.