Closed nblumhardt closed 4 weeks ago
Running seqcli from the Seq server container errors out:
seqcli
docker exec -it local-seq seqcli # The application to execute does not exist: '/usr/bin/seqcli.dll'.
The binary has to be run from /seqsvr/Client/seqcli, which is where the real binary resides.
/seqsvr/Client/seqcli
The issue is that /usr/bin/seqcli has been created as a hard link, when it instead should be soft (ln -s ...).
/usr/bin/seqcli
ln -s ...
Originally posted by @richard-stafflink in https://github.com/datalust/seq-tickets/discussions/2293
Running
seqcli
from the Seq server container errors out:The binary has to be run from
/seqsvr/Client/seqcli
, which is where the real binary resides.The issue is that
/usr/bin/seqcli
has been created as a hard link, when it instead should be soft (ln -s ...
).Originally posted by @richard-stafflink in https://github.com/datalust/seq-tickets/discussions/2293