Skip to content

Instantly share code, notes, and snippets.

@nsagot
Created May 17, 2025 13:26
Show Gist options
  • Select an option

  • Save nsagot/c2132b138ba6a7f9dcc4663a64b92d6e to your computer and use it in GitHub Desktop.

Select an option

Save nsagot/c2132b138ba6a7f9dcc4663a64b92d6e to your computer and use it in GitHub Desktop.
Docker-Compose for Splunk (Simple and Easy)
version: "3.8"
services:
so1:
platform: linux/amd64
image: ${SPLUNK_IMAGE:-splunk/splunk:latest}
hostname: so1
container_name: so1
environment:
- SPLUNK_START_ARGS=--accept-license
- SPLUNK_STANDALONE_URL=so1
- SPLUNK_PASSWORD=splunk4ninja
ports:
- 8000:8000
- 8089:8089
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment