fix up log config commands

This commit is contained in:
Jesse Duffield 2019-06-15 11:10:29 +10:00
parent 3e49e299b9
commit 90a04add32

View file

@ -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",