docker.asciidoc 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779
  1. [[docker]]
  2. === Install {es} with Docker
  3. {es} is available as a Docker image. A list of all published Docker images and
  4. tags is available at https://www.docker.elastic.co[www.docker.elastic.co]. The
  5. source files are in
  6. https://github.com/elastic/elasticsearch/blob/{branch}/distribution/docker[Github].
  7. include::license.asciidoc[]
  8. Starting in {es} 8.0, security is enabled by default. With security enabled,
  9. {stack} {security-features} require TLS encryption for the transport networking
  10. layer, or your cluster will fail to start.
  11. ==== Install Docker
  12. Visit https://docs.docker.com/get-docker/[Get Docker] to install Docker for your
  13. environment.
  14. IMPORTANT: If using Docker Desktop, make sure to allocate at least 4GB of
  15. memory. You can adjust memory usage in Docker Desktop by going to **Settings >
  16. Resources**.
  17. ==== Pull the Docker image
  18. Use the `docker pull` command to pull the {es} image from the the Elastic Docker
  19. registry.
  20. ifeval::["{release-state}"=="unreleased"]
  21. WARNING: Version {version} of {es} has not yet been released, so no
  22. Docker image is currently available for this version.
  23. endif::[]
  24. [source,sh,subs="attributes"]
  25. ----
  26. docker pull {docker-repo}:{version}
  27. ----
  28. [[docker-verify-signature]]
  29. ==== Optional: Verify the image signature
  30. Verify the signatures included in your {es} Docker images to ensure they're valid.
  31. Elastic images are signed with https://docs.sigstore.dev/cosign/overview/[Cosign] which is part of the https://www.sigstore.dev/[Sigstore] project.
  32. Cosign supports container signing, verification, and storage in an OCI registry.
  33. ifeval::["{release-state}"=="unreleased"]
  34. WARNING: Version {version} of {es} has not yet been released, so no
  35. Docker image signature is currently available for this version.
  36. endif::[]
  37. Install the appropriate https://docs.sigstore.dev/cosign/installation/[Cosign application]
  38. for your operating system.
  39. The container image signature for {es} v{version} can be verified as follows:
  40. ["source","sh",subs="attributes"]
  41. --------------------------------------------
  42. wget https://artifacts.elastic.co/cosign.pub <1>
  43. cosign verify --key cosign.pub {docker-repo}:{version} <2>
  44. --------------------------------------------
  45. <1> Download the Elastic public key to verify container signature
  46. <2> Verify the container against the Elastic public key
  47. The command prints the check results and the signature payload in JSON format:
  48. [source,sh,subs="attributes"]
  49. --------------------------------------------
  50. Verification for docker.elastic.co/elasticsearch/elasticsearch:{version} --
  51. The following checks were performed on each of these signatures:
  52. - The cosign claims were validated
  53. - Existence of the claims in the transparency log was verified offline
  54. - The signatures were verified against the specified public key
  55. --------------------------------------------
  56. [[docker-cli-run-dev-mode]]
  57. ==== Run {es} in Docker
  58. Use Docker commands to start a single-node {es} cluster for development or
  59. testing. You can then run additional Docker commands to add nodes to the test
  60. cluster.
  61. TIP: This setup doesn't run multiple {es} nodes or {kib} by default. To create a
  62. multi-node cluster with {kib}, use Docker Compose instead. See
  63. <<docker-compose-file>>.
  64. ===== Start a single-node cluster
  65. ifeval::["{release-state}"=="unreleased"]
  66. WARNING: Version {version} of the {es} Docker image has not yet been released.
  67. endif::[]
  68. . Create a new docker network.
  69. +
  70. [source,sh]
  71. ----
  72. docker network create elastic
  73. ----
  74. . Start an {es} container.
  75. +
  76. --
  77. ifeval::["{release-state}"=="unreleased"]
  78. WARNING: Version {version} of {es} has not yet been released, so no
  79. Docker image is currently available for this version.
  80. endif::[]
  81. [source,sh,subs="attributes"]
  82. ----
  83. docker run --name es01 --net elastic -p 9200:9200 -it -m 1GB {docker-image}
  84. ----
  85. TIP: Use the `-m` flag to set a memory limit for the container.
  86. The command prints the `elastic` user password and an enrollment token for {kib}.
  87. --
  88. . Copy the generated `elastic` password and enrollment token. These credentials
  89. are only shown when you start {es} for the first time. You can regenerate the
  90. credentials using the following commands.
  91. +
  92. --
  93. [source,sh,subs="attributes"]
  94. ----
  95. docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-reset-password
  96. docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-create-enrollment-token -s kibana
  97. ----
  98. We recommend storing the `elastic` password as an environment variable in your shell. Example:
  99. [source,sh]
  100. ----
  101. export ELASTIC_PASSWORD="your_password"
  102. ----
  103. --
  104. . Copy the `http_ca.crt` SSL certificate from the container to your local machine.
  105. +
  106. [source,sh]
  107. ----
  108. docker cp es01:/usr/share/elasticsearch/config/certs/http_ca.crt .
  109. ----
  110. . Make a REST API call to {es} to ensure the {es} container is running.
  111. +
  112. [source,sh]
  113. ----
  114. curl --cacert http_ca.crt -u elastic:$ELASTIC_PASSWORD https://localhost:9200
  115. ----
  116. // NOTCONSOLE
  117. ===== Add more nodes
  118. . Use an existing node to generate a enrollment token for the new node.
  119. +
  120. --
  121. [source,sh]
  122. ----
  123. docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-create-enrollment-token -s node
  124. ----
  125. The enrollment token is valid for 30 minutes.
  126. --
  127. . Start a new {es} container. Include the enrollment token as an environment variable.
  128. +
  129. --
  130. ifeval::["{release-state}"=="unreleased"]
  131. WARNING: Version {version} of {es} has not yet been released, so no
  132. Docker image is currently available for this version.
  133. endif::[]
  134. [source,sh,subs="attributes"]
  135. ----
  136. docker run -e ENROLLMENT_TOKEN="<token>" --name es02 --net elastic -it {docker-image}
  137. ----
  138. --
  139. . Call the <<cat-nodes,cat nodes API>> to verify the node was added to the cluster.
  140. +
  141. [source,sh]
  142. ----
  143. curl --cacert http_ca.crt -u elastic:$ELASTIC_PASSWORD https://localhost:9200/_cat/nodes
  144. ----
  145. // NOTCONSOLE
  146. ===== Setting JVM heap size
  147. If you experience issues where the container where your first node is running
  148. exits when your second node starts, explicitly set values for the JVM heap size.
  149. To <<set-jvm-heap-size,manually configure the heap size>>, include the
  150. `ES_JAVA_OPTS` variable and set values for `-Xms` and `-Xmx` when starting each
  151. node. For example, the following command starts node `es02` and sets the
  152. minimum and maximum JVM heap size to 1 GB:
  153. [source,sh,subs="attributes"]
  154. ----
  155. docker run -e ES_JAVA_OPTS="-Xms1g -Xmx1g" -e ENROLLMENT_TOKEN="<token>" --name es02 -p 9201:9200 --net elastic -it {docker-image}
  156. ----
  157. ===== Next steps
  158. You now have a test {es} environment set up. Before you start
  159. serious development or go into production with {es}, review the
  160. <<docker-prod-prerequisites,requirements and recommendations>> to apply when running {es} in Docker in production.
  161. [[elasticsearch-security-certificates]]
  162. include::security-files-reference.asciidoc[]
  163. [[docker-compose-file]]
  164. ==== Start a multi-node cluster with Docker Compose
  165. To get a multi-node {es} cluster and {kib} up and running in Docker with
  166. security enabled, you can use Docker Compose.
  167. This configuration provides a simple method of starting a secured cluster that
  168. you can use for development before building a distributed deployment with
  169. multiple hosts.
  170. ===== Prerequisites
  171. Install the appropriate https://docs.docker.com/get-docker/[Docker application]
  172. for your operating system.
  173. If you're running on Linux, install https://docs.docker.com/compose/install/[Docker Compose].
  174. [NOTE]
  175. ====
  176. Make sure that Docker is allotted at least 4GB of memory. In Docker Desktop,
  177. you configure resource usage on the Advanced tab in Preferences (macOS) or
  178. Settings (Windows).
  179. ====
  180. ===== Prepare the environment
  181. Create the following configuration files in a new, empty directory. These files
  182. are also available from the
  183. https://github.com/elastic/elasticsearch/tree/master/docs/reference/setup/install/docker[elasticsearch]
  184. repository on GitHub.
  185. --
  186. ifeval::["{release-state}"=="unreleased"]
  187. WARNING: Version {version} of {es} has not been released,
  188. so the following Docker Compose and configuration files won't work.
  189. See the {stack-gs-current}/get-started-docker.html[current version]
  190. for the latest working files.
  191. endif::[]
  192. --
  193. [discrete]
  194. [[docker-env-file]]
  195. ===== `.env`
  196. The `.env` file sets environment variables that are used when you run the
  197. `docker-compose.yml` configuration file. Ensure that you specify a strong
  198. password for the `elastic` and `kibana_system` users with the
  199. `ELASTIC_PASSWORD` and `KIBANA_PASSWORD` variables. These variable are
  200. referenced by the `docker-compose.yml` file.
  201. IMPORTANT: Your passwords must be alphanumeric, and cannot contain special
  202. characters such as `!` or `@`. The `bash` script included in the
  203. `docker-compose.yml` file only operates on alphanumeric characters.
  204. ["source","txt",subs="attributes"]
  205. ----
  206. include::docker/.env[]
  207. ----
  208. [discrete]
  209. [[docker-file]]
  210. ===== `docker-compose.yml`
  211. This `docker-compose.yml` file creates a three-node secure {es} cluster with authentication and network encryption enabled, and a {kib} instance securely connected to it.
  212. .Exposing ports
  213. ****
  214. This configuration exposes port `9200` on all network interfaces. Because
  215. of how Docker handles ports, a port that isn't bound to `localhost` leaves your
  216. {es} cluster publicly accessible, potentially ignoring any firewall settings.
  217. If you don't want to expose port `9200` to external hosts, set the value for
  218. `ES_PORT` in the `.env` file to something like `127.0.0.1:9200`. {es} will
  219. then only be accessible from the host machine itself.
  220. ****
  221. [source,yaml,subs="attributes"]
  222. ----
  223. include::docker/docker-compose.yml[]
  224. ----
  225. ===== Start your cluster with security enabled and configured
  226. . Modify the `.env` file and enter strong password values for both the
  227. `ELASTIC_PASSWORD` and `KIBANA_PASSWORD` variables.
  228. +
  229. NOTE: You must use the `ELASTIC_PASSWORD` value for further interactions with
  230. the cluster. The `KIBANA_PASSWORD` value is only used internally when
  231. configuring {kib}.
  232. . Create and start the three-node {es} cluster and {kib} instance:
  233. +
  234. ["source","sh"]
  235. ----
  236. docker-compose up -d
  237. ----
  238. . When the deployment has started, open a browser and navigate to http://localhost:5601[http://localhost:5601] to
  239. access {kib}, where you can load sample data and interact with your cluster.
  240. ===== Stop and remove the deployment
  241. To stop the cluster, run `docker-compose down`. The data in the Docker volumes
  242. is preserved and loaded when you restart the cluster with `docker-compose up`.
  243. --
  244. ["source","sh"]
  245. ----
  246. docker-compose down
  247. ----
  248. --
  249. To **delete** the network, containers, and volumes when you stop the cluster,
  250. specify the `-v` option:
  251. ["source","sh"]
  252. ----
  253. docker-compose down -v
  254. ----
  255. ===== Next steps
  256. You now have a test {es} environment set up. Before you start
  257. serious development or go into production with {es}, review the
  258. <<docker-prod-prerequisites,requirements and recommendations>> to apply when running {es} in Docker in production.
  259. [[docker-prod-prerequisites]]
  260. ==== Using the Docker images in production
  261. The following requirements and recommendations apply when running {es} in Docker in production.
  262. ===== Set `vm.max_map_count` to at least `262144`
  263. The `vm.max_map_count` kernel setting must be set to at least `262144` for production use.
  264. How you set `vm.max_map_count` depends on your platform.
  265. ====== Linux
  266. To view the current value for the `vm.max_map_count` setting, run:
  267. [source,sh]
  268. --------------------------------------------
  269. grep vm.max_map_count /etc/sysctl.conf
  270. vm.max_map_count=262144
  271. --------------------------------------------
  272. To apply the setting on a live system, run:
  273. [source,sh]
  274. --------------------------------------------
  275. sysctl -w vm.max_map_count=262144
  276. --------------------------------------------
  277. To permanently change the value for the `vm.max_map_count` setting, update the
  278. value in `/etc/sysctl.conf`.
  279. ====== macOS with https://docs.docker.com/docker-for-mac[Docker for Mac]
  280. The `vm.max_map_count` setting must be set within the xhyve virtual machine:
  281. . From the command line, run:
  282. +
  283. [source,sh]
  284. --------------------------------------------
  285. screen ~/Library/Containers/com.docker.docker/Data/vms/0/tty
  286. --------------------------------------------
  287. . Press enter and use `sysctl` to configure `vm.max_map_count`:
  288. +
  289. [source,sh]
  290. --------------------------------------------
  291. sysctl -w vm.max_map_count=262144
  292. --------------------------------------------
  293. . To exit the `screen` session, type `Ctrl a d`.
  294. ====== Windows and macOS with https://www.docker.com/products/docker-desktop[Docker Desktop]
  295. The `vm.max_map_count` setting must be set via docker-machine:
  296. [source,sh]
  297. --------------------------------------------
  298. docker-machine ssh
  299. sudo sysctl -w vm.max_map_count=262144
  300. --------------------------------------------
  301. ====== Windows with https://docs.docker.com/docker-for-windows/wsl[Docker Desktop WSL 2 backend]
  302. The `vm.max_map_count` setting must be set in the "docker-desktop" WSL instance before the
  303. ElasticSearch container will properly start. There are several ways to do this, depending
  304. on your version of Windows and your version of WSL.
  305. If you are on Windows 10 before version 22H2, or if you are on Windows 10 version 22H2 using the
  306. built-in version of WSL, you must either manually set it every time you restart Docker before starting
  307. your ElasticSearch container, or (if you do not wish to do so on every restart) you must globally set
  308. every WSL2 instance to have the `vm.max_map_count` changed. This is because these versions of WSL
  309. do not properly process the /etc/sysctl.conf file.
  310. To manually set it every time you reboot, you must run the following commands in a command prompt
  311. or PowerShell window every time you restart Docker:
  312. [source,sh]
  313. --------------------------------------------
  314. wsl -d docker-desktop -u root
  315. sysctl -w vm.max_map_count=262144
  316. --------------------------------------------
  317. If you are on these versions of WSL and you do not want to have to run those commands every
  318. time you restart Docker, you can globally change every WSL distribution with this setting
  319. by modifying your %USERPROFILE%\.wslconfig as follows:
  320. [source,text]
  321. --------------------------------------------
  322. [wsl2]
  323. kernelCommandLine = "sysctl.vm.max_map_count=262144"
  324. --------------------------------------------
  325. This will cause all WSL2 VMs to have that setting assigned when they start.
  326. If you are on Windows 11, or Windows 10 version 22H2 and have installed the Microsoft Store
  327. version of WSL, you can modify the /etc/sysctl.conf within the "docker-desktop" WSL
  328. distribution, perhaps with commands like this:
  329. [source,sh]
  330. --------------------------------------------
  331. wsl -d docker-desktop -u root
  332. vi /etc/sysctl.conf
  333. --------------------------------------------
  334. and appending a line which reads:
  335. [source,text]
  336. --------------------------------------------
  337. vm.max_map_count = 262144
  338. --------------------------------------------
  339. ===== Configuration files must be readable by the `elasticsearch` user
  340. By default, {es} runs inside the container as user `elasticsearch` using
  341. uid:gid `1000:0`.
  342. IMPORTANT: One exception is https://docs.openshift.com/container-platform/3.6/creating_images/guidelines.html#openshift-specific-guidelines[Openshift],
  343. which runs containers using an arbitrarily assigned user ID.
  344. Openshift presents persistent volumes with the gid set to `0`, which works without any adjustments.
  345. If you are bind-mounting a local directory or file, it must be readable by the `elasticsearch` user.
  346. In addition, this user must have write access to the <<path-settings,config, data and log dirs>>
  347. ({es} needs write access to the `config` directory so that it can generate a keystore).
  348. A good strategy is to grant group access to gid `0` for the local directory.
  349. For example, to prepare a local directory for storing data through a bind-mount:
  350. [source,sh]
  351. --------------------------------------------
  352. mkdir esdatadir
  353. chmod g+rwx esdatadir
  354. chgrp 0 esdatadir
  355. --------------------------------------------
  356. You can also run an {es} container using both a custom UID and GID. You
  357. must ensure that file permissions will not prevent {es} from executing. You
  358. can use one of two options:
  359. * Bind-mount the `config`, `data` and `logs`
  360. directories. If you intend to install plugins and prefer not to
  361. <<_c_customized_image, create a custom Docker image>>, you must also
  362. bind-mount the `plugins` directory.
  363. * Pass the `--group-add 0` command line option to `docker run`. This
  364. ensures that the user under which {es} is running is also a member of the
  365. `root` (GID 0) group inside the container.
  366. ===== Increase ulimits for nofile and nproc
  367. Increased ulimits for <<setting-system-settings,nofile>> and <<max-number-threads-check,nproc>>
  368. must be available for the {es} containers.
  369. Verify the https://github.com/moby/moby/tree/ea4d1243953e6b652082305a9c3cda8656edab26/contrib/init[init system]
  370. for the Docker daemon sets them to acceptable values.
  371. To check the Docker daemon defaults for ulimits, run:
  372. [source,sh]
  373. --------------------------------------------
  374. docker run --rm docker.elastic.co/elasticsearch/elasticsearch:{version} /bin/bash -c 'ulimit -Hn && ulimit -Sn && ulimit -Hu && ulimit -Su'
  375. --------------------------------------------
  376. If needed, adjust them in the Daemon or override them per container.
  377. For example, when using `docker run`, set:
  378. [source,sh]
  379. --------------------------------------------
  380. --ulimit nofile=65535:65535
  381. --------------------------------------------
  382. ===== Disable swapping
  383. Swapping needs to be disabled for performance and node stability.
  384. For information about ways to do this, see <<setup-configuration-memory>>.
  385. If you opt for the `bootstrap.memory_lock: true` approach,
  386. you also need to define the `memlock: true` ulimit in the
  387. https://docs.docker.com/engine/reference/commandline/dockerd/#default-ulimits[Docker Daemon],
  388. or explicitly set for the container as shown in the <<docker-compose-file, sample compose file>>.
  389. When using `docker run`, you can specify:
  390. [source,sh]
  391. ----
  392. -e "bootstrap.memory_lock=true" --ulimit memlock=-1:-1
  393. ----
  394. ===== Randomize published ports
  395. The image https://docs.docker.com/engine/reference/builder/#/expose[exposes]
  396. TCP ports 9200 and 9300. For production clusters, randomizing the
  397. published ports with `--publish-all` is recommended,
  398. unless you are pinning one container per host.
  399. [[docker-set-heap-size]]
  400. ===== Manually set the heap size
  401. By default, {es} automatically sizes JVM heap based on a nodes's
  402. <<node-roles,roles>> and the total memory available to the node's container. We
  403. recommend this default sizing for most production environments. If needed, you
  404. can override default sizing by manually setting JVM heap size.
  405. To manually set the heap size in production, bind mount a <<set-jvm-options,JVM
  406. options>> file under `/usr/share/elasticsearch/config/jvm.options.d` that
  407. includes your desired <<set-jvm-heap-size,heap size>> settings.
  408. For testing, you can also manually set the heap size using the `ES_JAVA_OPTS`
  409. environment variable. For example, to use 16GB, specify `-e
  410. ES_JAVA_OPTS="-Xms16g -Xmx16g"` with `docker run`. The `ES_JAVA_OPTS` variable
  411. overrides all other JVM options. We do not recommend using `ES_JAVA_OPTS` in
  412. production. The `docker-compose.yml` file above sets the heap size to 512MB.
  413. ===== Pin deployments to a specific image version
  414. Pin your deployments to a specific version of the {es} Docker image. For
  415. example +docker.elastic.co/elasticsearch/elasticsearch:{version}+.
  416. ===== Always bind data volumes
  417. You should use a volume bound on `/usr/share/elasticsearch/data` for the following reasons:
  418. . The data of your {es} node won't be lost if the container is killed
  419. . {es} is I/O sensitive and the Docker storage driver is not ideal for fast I/O
  420. . It allows the use of advanced
  421. https://docs.docker.com/engine/extend/plugins/#volume-plugins[Docker volume plugins]
  422. ===== Avoid using `loop-lvm` mode
  423. If you are using the devicemapper storage driver, do not use the default `loop-lvm` mode.
  424. Configure docker-engine to use
  425. https://docs.docker.com/engine/userguide/storagedriver/device-mapper-driver/#configure-docker-with-devicemapper[direct-lvm].
  426. ===== Centralize your logs
  427. Consider centralizing your logs by using a different
  428. https://docs.docker.com/engine/admin/logging/overview/[logging driver]. Also
  429. note that the default json-file logging driver is not ideally suited for
  430. production use.
  431. [[docker-configuration-methods]]
  432. ==== Configuring {es} with Docker
  433. When you run in Docker, the <<config-files-location,{es} configuration files>> are loaded from
  434. `/usr/share/elasticsearch/config/`.
  435. To use custom configuration files, you <<docker-config-bind-mount, bind-mount the files>>
  436. over the configuration files in the image.
  437. You can set individual {es} configuration parameters using Docker environment variables.
  438. The <<docker-compose-file, sample compose file>> and the
  439. <<docker-cli-run-dev-mode, single-node example>> use this method. You can
  440. use the setting name directly as the environment variable name. If
  441. you cannot do this, for example because your orchestration platform forbids
  442. periods in environment variable names, then you can use an alternative
  443. style by converting the setting name as follows.
  444. . Change the setting name to uppercase
  445. . Prefix it with `ES_SETTING_`
  446. . Escape any underscores (`_`) by duplicating them
  447. . Convert all periods (`.`) to underscores (`_`)
  448. For example, `-e bootstrap.memory_lock=true` becomes
  449. `-e ES_SETTING_BOOTSTRAP_MEMORY__LOCK=true`.
  450. You can use the contents of a file to set the value of the
  451. `ELASTIC_PASSWORD` or `KEYSTORE_PASSWORD` environment variables, by
  452. suffixing the environment variable name with `_FILE`. This is useful for
  453. passing secrets such as passwords to {es} without specifying them directly.
  454. For example, to set the {es} bootstrap password from a file, you can bind mount the
  455. file and set the `ELASTIC_PASSWORD_FILE` environment variable to the mount location.
  456. If you mount the password file to `/run/secrets/bootstrapPassword.txt`, specify:
  457. [source,sh]
  458. --------------------------------------------
  459. -e ELASTIC_PASSWORD_FILE=/run/secrets/bootstrapPassword.txt
  460. --------------------------------------------
  461. You can override the default command for the image to pass {es} configuration
  462. parameters as command line options. For example:
  463. [source,sh]
  464. --------------------------------------------
  465. docker run <various parameters> bin/elasticsearch -Ecluster.name=mynewclustername
  466. --------------------------------------------
  467. While bind-mounting your configuration files is usually the preferred method in production,
  468. you can also <<_c_customized_image, create a custom Docker image>>
  469. that contains your configuration.
  470. [[docker-config-bind-mount]]
  471. ===== Mounting {es} configuration files
  472. Create custom config files and bind-mount them over the corresponding files in the Docker image.
  473. For example, to bind-mount `custom_elasticsearch.yml` with `docker run`, specify:
  474. [source,sh]
  475. --------------------------------------------
  476. -v full_path_to/custom_elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
  477. --------------------------------------------
  478. If you bind-mount a custom `elasticsearch.yml` file, ensure it includes the
  479. `network.host: 0.0.0.0` setting. This setting ensures the node is reachable for
  480. HTTP and transport traffic, provided its ports are exposed. The Docker image's
  481. built-in `elasticsearch.yml` file includes this setting by default.
  482. IMPORTANT: The container **runs {es} as user `elasticsearch` using
  483. uid:gid `1000:0`**. Bind mounted host directories and files must be accessible by this user,
  484. and the data and log directories must be writable by this user.
  485. [[docker-keystore-bind-mount]]
  486. ===== Create an encrypted {es} keystore
  487. By default, {es} will auto-generate a keystore file for <<secure-settings,secure
  488. settings>>. This file is obfuscated but not encrypted.
  489. To encrypt your secure settings with a password and have them persist outside
  490. the container, use a `docker run` command to manually create the keystore
  491. instead. The command must:
  492. * Bind-mount the `config` directory. The command will create an
  493. `elasticsearch.keystore` file in this directory. To avoid errors, do
  494. not directly bind-mount the `elasticsearch.keystore` file.
  495. * Use the `elasticsearch-keystore` tool with the `create -p` option. You'll be
  496. prompted to enter a password for the keystore.
  497. For example:
  498. [source,sh,subs="attributes"]
  499. ----
  500. docker run -it --rm \
  501. -v full_path_to/config:/usr/share/elasticsearch/config \
  502. docker.elastic.co/elasticsearch/elasticsearch:{version} \
  503. bin/elasticsearch-keystore create -p
  504. ----
  505. You can also use a `docker run` command to add or update secure settings in the
  506. keystore. You'll be prompted to enter the setting values. If the keystore is
  507. encrypted, you'll also be prompted to enter the keystore password.
  508. [source,sh,subs="attributes"]
  509. ----
  510. docker run -it --rm \
  511. -v full_path_to/config:/usr/share/elasticsearch/config \
  512. docker.elastic.co/elasticsearch/elasticsearch:{version} \
  513. bin/elasticsearch-keystore \
  514. add my.secure.setting \
  515. my.other.secure.setting
  516. ----
  517. If you've already created the keystore and don't need to update it, you can
  518. bind-mount the `elasticsearch.keystore` file directly. You can use the
  519. `KEYSTORE_PASSWORD` environment variable to provide the keystore password to the
  520. container at startup. For example, a `docker run` command might have the
  521. following options:
  522. [source,sh]
  523. ----
  524. -v full_path_to/config/elasticsearch.keystore:/usr/share/elasticsearch/config/elasticsearch.keystore
  525. -e KEYSTORE_PASSWORD=mypassword
  526. ----
  527. [[_c_customized_image]]
  528. ===== Using custom Docker images
  529. In some environments, it might make more sense to prepare a custom image that contains
  530. your configuration. A `Dockerfile` to achieve this might be as simple as:
  531. [source,sh,subs="attributes"]
  532. --------------------------------------------
  533. FROM docker.elastic.co/elasticsearch/elasticsearch:{version}
  534. COPY --chown=elasticsearch:elasticsearch elasticsearch.yml /usr/share/elasticsearch/config/
  535. --------------------------------------------
  536. You could then build and run the image with:
  537. [source,sh]
  538. --------------------------------------------
  539. docker build --tag=elasticsearch-custom .
  540. docker run -ti -v /usr/share/elasticsearch/data elasticsearch-custom
  541. --------------------------------------------
  542. Some plugins require additional security permissions.
  543. You must explicitly accept them either by:
  544. * Attaching a `tty` when you run the Docker image and allowing the permissions when prompted.
  545. * Inspecting the security permissions and accepting them (if appropriate) by adding the `--batch` flag to the plugin install command.
  546. See {plugins}/_other_command_line_parameters.html[Plugin management]
  547. for more information.
  548. [discrete]
  549. [[troubleshoot-docker-errors]]
  550. ==== Troubleshoot Docker errors for {es}
  551. Here’s how to resolve common errors when running {es} with Docker.
  552. ===== elasticsearch.keystore is a directory
  553. [source,txt]
  554. ----
  555. Exception in thread "main" org.elasticsearch.bootstrap.BootstrapException: java.io.IOException: Is a directory: SimpleFSIndexInput(path="/usr/share/elasticsearch/config/elasticsearch.keystore") Likely root cause: java.io.IOException: Is a directory
  556. ----
  557. A <<docker-keystore-bind-mount,keystore-related>> `docker run` command attempted
  558. to directly bind-mount an `elasticsearch.keystore` file that doesn't exist. If
  559. you use the `-v` or `--volume` flag to mount a file that doesn't exist, Docker
  560. instead creates a directory with the same name.
  561. To resolve this error:
  562. . Delete the `elasticsearch.keystore` directory in the `config` directory.
  563. . Update the `-v` or `--volume` flag to point to the `config` directory path
  564. rather than the keystore file's path. For an example, see
  565. <<docker-keystore-bind-mount>>.
  566. . Retry the command.
  567. ===== elasticsearch.keystore: Device or resource busy
  568. [source,txt]
  569. ----
  570. Exception in thread "main" java.nio.file.FileSystemException: /usr/share/elasticsearch/config/elasticsearch.keystore.tmp -> /usr/share/elasticsearch/config/elasticsearch.keystore: Device or resource busy
  571. ----
  572. A `docker run` command attempted to <<docker-keystore-bind-mount,update the
  573. keystore>> while directly bind-mounting the `elasticsearch.keystore` file. To
  574. update the keystore, the container requires access to other files in the
  575. `config` directory, such as `keystore.tmp`.
  576. To resolve this error:
  577. . Update the `-v` or `--volume` flag to point to the `config` directory
  578. path rather than the keystore file's path. For an example, see
  579. <<docker-keystore-bind-mount>>.
  580. . Retry the command.