Docker: how to use seqcli in a running container?. #2293
-
I'd like to run the seqcli in the running Seq server container (for local development). My O/S is Linux. Why: So I don't have to set Running seqcli from the image works fine: docker run --rm datalust/seq:latest seqcli
# Usage: seq <command> [<args>] But from the running from the running Seq server container errors out: docker exec -it local-seq seqcli
# The application to execute does not exist: '/usr/bin/seqcli.dll'. Any idea why I get this error? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @richard-stafflink 👋 The executable lives under
it should work:
|
Beta Was this translation helpful? Give feedback.
-
I ran into the same problem and it seems that for some reason you have put an actual copy of the If on the container image I run |
Beta Was this translation helpful? Give feedback.
Hi @richard-stafflink 👋 The executable lives under
/seqsvr/Client/seqcli
. It looks like there might be an issue with how we linkseqcli
to/bin/seqcli
in the container that makes this not work. If you run:it should work: