👩💻 Join our community of thousands of amazing developers!
This is going to be a short one I’m only writing this one because I could not Google exactly what I needed as easily as I expected, so hopefully it might help someone. Setting up an Elasticsearch instance to test against on CircleCI is actually quite straightforward. Your .circleci/config.yml should look something like this: jobs: build: docker: - image: circleci/<language>:<version TAG> - image: docker.elastic.co/elasticsearch/elasticsearch:7.12.0 #1 environment: - transport.host: localhost #2 ...