Issue setting up connector

I am following this link Running from a Docker container | Enterprise Search documentation [8.13] | Elastic to run my connector on docker. However, I am faced with this issue.

Please don't post images of text as they are hard to read, may not display correctly for everyone, and are not searchable.

Instead, paste the text and format it with </> icon or pairs of triple backticks (```), and check the preview window to make sure it's properly formatted before posting it. This makes it more likely that your question will receive a useful answer.

It would be great if you could update your post to solve this.

I am following this link Running from a Docker container | Enterprise Search documentation [8.13] | Elastic to run my connector on docker. However, I am faced with this issue

docker run \
-v "</absolute/path/to>/connectors-config:/config" \ # NOTE: you must change this path to match where the config.yml is located
--rm \
--tty -i \
--network host \
docker.elastic.co/enterprise-search/elastic-connectors:8.13.4.0 \
/app/bin/elastic-ingest \
-c /config/config.yml

I am returned with this

docker: invalid reference format.

Hey @Lim_Rik. It seems that you are trying to execute this command in Windows. Windows uses caret ^ instead of backslash \ as a line continuation character in the console. It should work if you change the character or keep the whole command in a single line. Let me know if it helps.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.