commit bcdf5730ef27c41c4e591c69000b7bf4782ad4e8 Author: hanez Date: Fri May 30 22:03:01 2025 +0200 Initial commit. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8fce603 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +data/ diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..3870868 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,20 @@ +services: + + splunk: + image: splunk/splunk:latest + container_name: splunk + environment: + - SPLUNK_PASSWORD=sCE@7Nb2@4NNv%X@4EjaXZxoHv`LYu`W + - SPLUNK_START_ARGS=--accept-license + - TZ=CEST + volumes: + - ./data/db:/opt/splunk/var/lib/splunk:rw + - ./data/etc:/opt/splunk/etc:rw + - /var/log:/hostlog:ro + restart: always + ports: + - "0.0.0.0:514:514/tcp" + - "0.0.0.0:514:514/udp" + - "127.0.0.1:8000:8000/tcp" + tty: true +