From 65bc05899fe1ed2ada4b7530e72da45a002e9a2f Mon Sep 17 00:00:00 2001 From: Andy Wick Date: Mon, 18 Nov 2024 22:24:04 -0500 Subject: [PATCH] high level getting started with docker --- _wiki/docker.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/_wiki/docker.md b/_wiki/docker.md index 1d7ba6d..30d85a7 100644 --- a/_wiki/docker.md +++ b/_wiki/docker.md @@ -61,6 +61,15 @@ For comprehensive configuration, consider combining these methods: By strategically combining these methods, you can effectively tailor Arkime Docker containers to your specific requirements. +## Setting up an Arkime environment +{: .subsection } + +1. Install OpenSearch or Elasticsearch - You can use either Docker or a standalone installation. +2. Initialize OpenSearch or Elasticsearch - `docker run ghcr.io/arkime/arkime/arkime:v5-latest /opt/arkime/db/db.pl --insecure http://ESHOST:9200 init` you may need to specify a network mode. +3. Setup directories - You'll need directories for your pcap and configuration files, for example `/opt/arkime/raw` and `/opt/arkime/etc` mounting these directories into the container. +4. Create configuration files - You can use the default configuration or create your own at `/opt/arkime/etc/config.ini` [Arkime Settings](/settings). +5. Start your Arkime containers. + ## Docker Compose Examples {: .subsection }