azbarcea opened a new issue #8702: Getting started with Druid in Docker (docs) URL: https://github.com/apache/incubator-druid/issues/8702 I was trying to start with Druid, and no mention in documentation about how to start with Druid with Docker. Finally I was able to: 1. Get druid source code ``` git clone [email protected]:apache/incubator-druid.git druid cd druid ``` 2. Modify `distribution/docker/docker-compose.yml` and add the tag info, like ```diff - image: apache/incubator-druid + image: apache/incubator-druid:0.16.0-incubating ``` 3. Run composition: ``` docker-compose up -d ``` Navigate to http://localhost:3001/ The problem seems to be with the way `druid` is released to hub.docker.com, because it doesn't push the tag `latest`. Also, in the [docs](https://druid.apache.org/docs/latest/tutorials/index.html) there is no mention about how to easily get started with using `docker-compose`.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
