Open mattcosa opened 2 years ago
I was having this same issue, I had forgotten to mount the volume that the app files where stored.
A subset of my docker-compose file looks like this
version: '3.6'
services:
splunkenterprise:
hostname: splunkenterprise
image: splunk/splunk:8.2
environment:
SPLUNK_APPS_URL: /opt/splunk/apps/splunkForwarderConfig.spl
volumes:
- /opt/splunk/apps:/opt/splunk/apps <----- this is the line that fixed it
When using the
SPLUNK_APPS_URL=
environment param, the startup stops with:The
docker-compose.yml
has the following excerpt:Is there anything incorrect with the definition of the path/app locations specified here?