mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
fix up log config commands
This commit is contained in:
parent
3e49e299b9
commit
90a04add32
1 changed files with 3 additions and 2 deletions
|
|
@ -168,8 +168,9 @@ func GetDefaultConfig() UserConfig {
|
||||||
RestartService: "{{ .DockerCompose }} restart {{ .Service.Name }}",
|
RestartService: "{{ .DockerCompose }} restart {{ .Service.Name }}",
|
||||||
RebuildService: "{{ .DockerCompose }} up -d --build {{ .Service.Name }}",
|
RebuildService: "{{ .DockerCompose }} up -d --build {{ .Service.Name }}",
|
||||||
StopService: "{{ .DockerCompose }} stop {{ .Service.Name }}",
|
StopService: "{{ .DockerCompose }} stop {{ .Service.Name }}",
|
||||||
ServiceLogs: "{{ .DockerCompose }} logs {{ .Service.Name }}",
|
ServiceLogs: "{{ .DockerCompose }} logs --tail=100 --follow {{ .Service.Name }}",
|
||||||
AllLogs: "{{ .DockerCompose }} logs --tail=100",
|
ViewServiceLogs: "{{ .DockerCompose }} logs --follow {{ .Service.Name }}",
|
||||||
|
AllLogs: "{{ .DockerCompose }} logs --tail=100 --follow",
|
||||||
ViewAllLogs: "{{ .DockerCompose }} logs",
|
ViewAllLogs: "{{ .DockerCompose }} logs",
|
||||||
DockerComposeConfig: "{{ .DockerCompose }} config",
|
DockerComposeConfig: "{{ .DockerCompose }} config",
|
||||||
CheckDockerComposeConfig: "{{ .DockerCompose }} config --quiet",
|
CheckDockerComposeConfig: "{{ .DockerCompose }} config --quiet",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue