Skip to content

Commit 022d007

Browse files
committed
chore: Remove Dockerfile
1 parent 91af6f2 commit 022d007

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

Dockerfile

-4
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The `container query` is a regular expression of the container name; you could p
3737
flag | default | purpose
3838
-----------------------------|---------------------------------|---------
3939
`--color` | `auto` | Force set color output. 'auto': colorize if tty attached, 'always': always colorize, 'never': never colorize.
40-
`--completion` | | Output stern command-line completion code for the specified shell. Can be 'bash', 'zsh' or 'fish'.
40+
`--completion` | | Output tailfin command-line completion code for the specified shell. Can be 'bash', 'zsh' or 'fish'.
4141
`--compose` | `[]` | Compose project name to match (regular expression)
4242
`--compose-colors` | | Specifies the colors used to highlight container names. Provide colors as a comma-separated list using SGR (Select Graphic Rendition) sequences, e.g., "91,92,93,94,95,96".
4343
`--config` | `~/.config/tailfin/config.yaml` | Path to the tailfin config file

cmd/tailfincmd/cmd.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ func (o *options) overrideFlagSetDefaultFromConfig(fs *pflag.FlagSet) error {
334334
// AddFlags adds all the flags used by tailfin.
335335
func (o *options) AddFlags(fs *pflag.FlagSet) {
336336
fs.StringVar(&o.color, "color", o.color, "Force set color output. 'auto': colorize if tty attached, 'always': always colorize, 'never': never colorize.")
337-
fs.StringVar(&o.completion, "completion", o.completion, "Output stern command-line completion code for the specified shell. Can be 'bash', 'zsh' or 'fish'.")
337+
fs.StringVar(&o.completion, "completion", o.completion, "Output tailfin command-line completion code for the specified shell. Can be 'bash', 'zsh' or 'fish'.")
338338
fs.StringArrayVar(&o.compose, "compose", o.compose, "Compose project name to match (regular expression)")
339339
fs.StringArrayVarP(&o.exclude, "exclude", "e", o.exclude, "Log lines to exclude. (regular expression)")
340340
fs.StringArrayVarP(&o.excludeContainer, "exclude-container", "E", o.excludeContainer, "Container name to exclude. (regular expression)")

0 commit comments

Comments
 (0)