sklibanov312 commented on issue #2829: URL: https://github.com/apache/drill/issues/2829#issuecomment-2084134716
I've worked around this issue as follows: 1. My own Dockerfile from debian:12, install pre-requisites including `expect`, COPY apache-drill-1.21.1.tar.gz and un-tar it inside, essentially following https://drill.apache.org/docs/installing-drill-on-linux-and-mac-os-x/ . 2. Also COPY into place a new `docker-entrypoint.sh` file 3. Its contents: ``` #!/bin/bash unbuffer apache-drill-1.21.1/bin/drill-embedded ``` With port 8047 forwarded from the outside, I can connect to the Drill instance, and it stays on even without the -ti argument to docker run. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@drill.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org