-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to use log messages with spaces in docker #109
Comments
Thanks for the report 👍 I notice you've tried backticks and double-quotes; any chance single quotes You might also try: # etc...
CLIARGS='log --message="{ReleaseName} in project {ProjectName} successfull for{ReleaseEnvironment}"`
docker run --rm datalust/seqcli:latest "$CLIARGS" Let me know if either of these helps. Cheers! |
My mistake @nblumhardt, I tried |
I also have run into the same issue. I tried numerous combinations: docker run --net host datalust/seqcli:latest log -m "Hello, World" docker run --net host datalust/seqcli:latest log -m 'Hello, World' docker run --net host datalust/seqcli:latest log -m I was able to get it to work by modifying the run.sh file to: #!/bin/bash Note the quotes around $@ (https://github.com/koalaman/shellcheck/wiki/SC2068) The following commands then worked: Cheers |
Fantastic, thanks for passing that on @jmcstone , we'll give it a shot 👍 |
Just going to reopen so we can track the progress of #111 |
The latest container image includes the fix, thanks all! |
This command works...
This one does not...
With the message
Unrecognized options: in, project, {ProjectName}, successfull, for, {ReleaseEnvironment}
I've also tried using -m instead of --message, using ` instead of ", and removing quotes from properties.
Running on Ubuntu 18.04 with docker ce latest package version
5:18.09.6~3-0~ubuntu-bionic
The text was updated successfully, but these errors were encountered: