mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
Merge 9dc2c053cb into 7e7aadc207
This commit is contained in:
commit
ee3ed3be4f
2 changed files with 3 additions and 3 deletions
|
|
@ -78,7 +78,7 @@ commandTemplates:
|
||||||
rebuildService: '{{ .DockerCompose }} up -d --build {{ .Service.Name }}'
|
rebuildService: '{{ .DockerCompose }} up -d --build {{ .Service.Name }}'
|
||||||
recreateService: '{{ .DockerCompose }} up -d --force-recreate {{ .Service.Name }}'
|
recreateService: '{{ .DockerCompose }} up -d --force-recreate {{ .Service.Name }}'
|
||||||
allLogs: '{{ .DockerCompose }} logs --tail=300 --follow'
|
allLogs: '{{ .DockerCompose }} logs --tail=300 --follow'
|
||||||
viewAlLogs: '{{ .DockerCompose }} logs'
|
viewAllLogs: '{{ .DockerCompose }} logs'
|
||||||
dockerComposeConfig: '{{ .DockerCompose }} config'
|
dockerComposeConfig: '{{ .DockerCompose }} config'
|
||||||
checkDockerComposeConfig: '{{ .DockerCompose }} config --quiet'
|
checkDockerComposeConfig: '{{ .DockerCompose }} config --quiet'
|
||||||
serviceTop: '{{ .DockerCompose }} top {{ .Service.Name }}'
|
serviceTop: '{{ .DockerCompose }} top {{ .Service.Name }}'
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@ type GuiConfig struct {
|
||||||
|
|
||||||
// IgnoreMouseEvents is for when you do not want to use your mouse to interact
|
// IgnoreMouseEvents is for when you do not want to use your mouse to interact
|
||||||
// with anything
|
// with anything
|
||||||
IgnoreMouseEvents bool `yaml:"mouseEvents,omitempty"`
|
IgnoreMouseEvents bool `yaml:"ignoreMouseEvents,omitempty"`
|
||||||
|
|
||||||
// Theme determines what colors and color attributes your panel borders have.
|
// Theme determines what colors and color attributes your panel borders have.
|
||||||
// I always set inactiveBorderColor to black because in my terminal it's more
|
// I always set inactiveBorderColor to black because in my terminal it's more
|
||||||
|
|
@ -205,7 +205,7 @@ type CommandTemplatesConfig struct {
|
||||||
AllLogs string `yaml:"allLogs,omitempty"`
|
AllLogs string `yaml:"allLogs,omitempty"`
|
||||||
|
|
||||||
// ViewAllLogs is the command we use when you want to see all logs in a subprocess with no filtering
|
// ViewAllLogs is the command we use when you want to see all logs in a subprocess with no filtering
|
||||||
ViewAllLogs string `yaml:"viewAlLogs,omitempty"`
|
ViewAllLogs string `yaml:"viewAllLogs,omitempty"`
|
||||||
|
|
||||||
// DockerComposeConfig is the command for viewing the config of your docker
|
// DockerComposeConfig is the command for viewing the config of your docker
|
||||||
// compose. It basically prints out the yaml from your docker-compose.yml
|
// compose. It basically prints out the yaml from your docker-compose.yml
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue