-
Notifications
You must be signed in to change notification settings - Fork 9
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
use markdown in output text #404
base: main
Are you sure you want to change the base?
Conversation
@@ -29,7 +29,7 @@ func validateProject(project *compose.Project) error { | |||
warnf("unsupported compose directive: read_only") | |||
} | |||
if svccfg.Restart == "" { | |||
warnf("missing compose directive: restart; assuming 'unless-stopped' (add 'restart' to silence)") | |||
warnf("missing compose directive: `restart`; assuming 'unless-stopped' (add 'restart' to silence)") | |||
} else if svccfg.Restart != "always" && svccfg.Restart != "unless-stopped" { | |||
warnf("unsupported compose directive: restart; assuming 'unless-stopped' (add 'restart' to silence)") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
restart should be marked code here too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool!
Not sure what's the best way to show
code
; now using "invert" which looks a bit like GitHub: