Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,18 @@ docker run \
--network "elastic" \
--tty \
--rm \
docker.elastic.co/enterprise-search/elastic-connectors:{version}.0 \
docker.elastic.co/integrations/elastic-connectors:{version}.0 \
/app/bin/elastic-ingest \
-c /config/config.yml
----
====
Refer to {connectors-python}/docs/DOCKER.md[`DOCKER.md`^] in the `elastic/connectors` repo for more details.
Find all available Docker images in the https://www.docker.elastic.co/r/enterprise-search/elastic-connectors[official registry].
Find all available Docker images in the https://www.docker.elastic.co/r/integrations/elastic-connectors[official registry].
[TIP]
====
We also have a quickstart self-managed option using Docker Compose, so you can spin up all required services at once: Elasticsearch, Kibana, and the connectors service.
Refer to this https://github.com/elastic/connectors/tree/main/scripts/stack#readme[README] in the `elastic/connectors` repo for more information.
====
====
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ docker run \
--rm \
--tty -i \
--network host \
docker.elastic.co/enterprise-search/elastic-connectors:{version}.0 \
docker.elastic.co/integrations/elastic-connectors:{version}.0 \
/app/bin/elastic-ingest \
-c /config/config.yml
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ $ docker run \
--network "elastic" \
--tty \
--rm \
docker.elastic.co/enterprise-search/elastic-connectors:$CONNECTOR_CLIENT_VERSION \
docker.elastic.co/integrations/elastic-connectors:$CONNECTOR_CLIENT_VERSION \
/app/bin/elastic-ingest \
-c /config/config.yml
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,18 @@ docker run \
--rm \
--tty -i \
--network host \
docker.elastic.co/enterprise-search/elastic-connectors:{version}.0 \
docker.elastic.co/integrations/elastic-connectors:{version}.0 \
/app/bin/elastic-ingest \
-c /config/config.yml
----

[TIP]
====
For unreleased versions, append the `-SNAPSHOT` suffix to the version number.
For example, `docker.elastic.co/enterprise-search/elastic-connectors:8.14.0.0-SNAPSHOT`.
For example, `docker.elastic.co/integrations/elastic-connectors:8.14.0.0-SNAPSHOT`.
====

Find all available Docker images in the https://www.docker.elastic.co/r/enterprise-search/elastic-connectors[official registry].
Find all available Docker images in the https://www.docker.elastic.co/r/integrations/elastic-connectors[official registry].

[discrete#es-build-connector-finalizes-kibana]
==== Enter data source details in Kibana
Expand Down
Loading