I tried to start a container from the image using the suggested command:
docker run --env DEBUG=1 --name="logspout" \
--volume=/var/run/docker.sock:/tmp/docker.sock \
--publish=0.0.0.0:8002:80 b356b141ddc2
(obviously with the correct image name), but it won't start unless I specify a route in the docker run command, otherwise I just get it stopping immediately with:
I thus start it with a route added to the docker run command of splunk://172.17.0.1:1514 , which works, however it writes vast numbers of "...Wrote " entries to the port. I turned off --env DEBUG=1 but that doesn't seem to help.
Any ideas? (And does starting logspout without a route work for you?)
I tried to start a container from the image using the suggested command:
(obviously with the correct image name), but it won't start unless I specify a route in the docker run command, otherwise I just get it stopping immediately with:
I thus start it with a route added to the docker run command of splunk://172.17.0.1:1514 , which works, however it writes vast numbers of "...Wrote " entries to the port. I turned off --env DEBUG=1 but that doesn't seem to help.
Any ideas? (And does starting logspout without a route work for you?)