Unable to use log messages with spaces in docker
See original GitHub issueThis command works…
docker run --rm datalust/seqcli:latest log --message="{ReleaseName}inproject{ProjectName}successfullfor{ReleaseEnvironment}" \
--property=ReleaseName="Test" \
--property=ReleaseEnvironment="Test" \
--property=projectName="***" \
--property=Environment=PRODUCTION \
--property=Service="***" \
--level=Information \
--server=https://***/ \
--apikey=***
This one does not…
docker run --rm datalust/seqcli:latest log --message="{ReleaseName} in project {ProjectName} successfull for{ReleaseEnvironment}" \
--property=ReleaseName="Test" \
--property=ReleaseEnvironment="Test" \
--property=projectName="***" \
--property=Environment=PRODUCTION \
--property=Service="***" \
--level=Information \
--server=https://***/ \
--apikey=***
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
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Docker container logs taking all my disk space
If you want to disable logs only for specific containers, you can start them with --log-driver=none in the docker run command. Another option ......
Read more >Docker Desktop 3.3.3 does not show container log while ...
if I run "docker logs postgres" logging is shown. ... <container> / docker container logs <container> ) still work, or does that also...
Read more >Configure logging drivers
When you start a container, you can configure it to use a different logging driver than the Docker daemon's default, using the --log-driver...
Read more >Docker Logging: 101 Guide to Logs, Best Practices & More
Get started with Docker logging! Learn what container and daemon logs are and the best practices and strategies on how to view and...
Read more >Writing and Managing Application Logs with Docker - Manning
Docker has a pluggable logging framework—you need to make sure your application logs are coming out from the container, and then Docker can ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The latest container image includes the fix, thanks all!
Just going to reopen so we can track the progress of #111