DEV Community

Said Olano
Said Olano

Posted on

How to run Splunk in MAC OS with Docker

If you want to run Splunk on your MAC OS Laptop device, you only have to run this command:

1.- Command:

docker run --platform linux/amd64 -d -p 8000:8000 \
            -e "SPLUNK_START_ARGS=--accept-license" \
            -e "SPLUNK_PASSWORD=splunk123" \
            --name splunk splunk/splunk:latest
Enter fullscreen mode Exit fullscreen mode

2.- Docker container:
Image description

3.- Run in localhost:8000

Image description

4.- One more screen capture:

Image description

Top comments (0)