mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-21 23:01: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 }}",
|
||||
RebuildService: "{{ .DockerCompose }} up -d --build {{ .Service.Name }}",
|
||||
StopService: "{{ .DockerCompose }} stop {{ .Service.Name }}",
|
||||
ServiceLogs: "{{ .DockerCompose }} logs {{ .Service.Name }}",
|
||||
AllLogs: "{{ .DockerCompose }} logs --tail=100",
|
||||
ServiceLogs: "{{ .DockerCompose }} logs --tail=100 --follow {{ .Service.Name }}",
|
||||
ViewServiceLogs: "{{ .DockerCompose }} logs --follow {{ .Service.Name }}",
|
||||
AllLogs: "{{ .DockerCompose }} logs --tail=100 --follow",
|
||||
ViewAllLogs: "{{ .DockerCompose }} logs",
|
||||
DockerComposeConfig: "{{ .DockerCompose }} config",
|
||||
CheckDockerComposeConfig: "{{ .DockerCompose }} config --quiet",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue