Closed vatavale closed 2 years ago
Hi @vatavale,
Should the keys and values be separated by :
instead of =
?
I.e.
- SEQ_ADDRESS="http://seq:5341"
=> - SEQ_ADDRESS: "http://seq:5341"
If that doesn't work, perhaps try starting with the example in the README, get that to work, then modify it.
Hi, @liammclennan,
Thank you for the help! You are right.
Turns out it's wrong to use quotation marks when using this syntax with = sign.
This two options are working right:
environment:
- SEQ_ADDRESS=http://seq:5341
environment:
SEQ_ADDRESS: "http://seq:5341"
And a side note about README example. In my docker-compose (syntax version: '3.9') this setup is not working (container exit because of EULA):
environment:
ACCEPT_EULA: Y
but this one works:
environment:
ACCEPT_EULA: "Y"
I'm glad you found a solution. Thanks for the note about the README.
I'm trying to collect logs from docker containers. All containers are running on the same host.
Error message in seq-gelf (repeated):
Do I understand correctly that the error "Invalid URI: The URI scheme is not valid" means that seq-gelp cannot find the seq service? Looks like the seq container itself works fine:
I can connect to its web interface (with no captured events inside).
What's wrong with my config?