This link explains how to run Apache Drill on Docker.
docker run -i --name drill-1.18.0 -p 8047:8047 -t apache/drill:1.18.0 /bin/bash
I need to run it on Docker Compose, so I set it up:
version: "3.0"
services:
drill:
image: apache/drill:latest
ports:
- "8047:8047"
volumes:
- vol_dask_data:/data
entrypoint:
- /bin/bash
And start it like so:
docker-compose up -d
But the container ends without doing anything, even though I start docker compose with -d
.
How to start Drill in Docker Compose?