1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Lazydocker Configuration
# Theme: Tokyo Night (matching lazyvim)
gui:
# Tokyo Night color scheme
theme:
activeBorderColor:
- "#7aa2f7" # blue
- bold
inactiveBorderColor:
- "#565f89" # comment
optionsTextColor:
- "#7aa2f7" # blue
selectedLineBgColor:
- "#33467c" # selection
selectedRangeBgColor:
- "#33467c" # selection
defaultFgColor:
- "#c0caf5" # fg
# UI settings
border: rounded
showAllContainers: false
returnImmediately: false
wrapMainPanel: true
# Legacy scrolling
legacySortContainers: false
logs:
timestamps: false
since: "60m" # Show logs from last 60 minutes
tail: "" # Tail all logs
commandTemplates:
dockerCompose: docker-compose
restartService: "{{ .DockerCompose }} restart {{ .Service.Name }}"
stopService: "{{ .DockerCompose }} stop {{ .Service.Name }}"
serviceLogs: "{{ .DockerCompose }} logs --since=60m --follow {{ .Service.Name }}"
viewServiceLogs: "{{ .DockerCompose }} logs --follow {{ .Service.Name }}"
rebuildService: "{{ .DockerCompose }} up -d --build {{ .Service.Name }}"
recreateService: "{{ .DockerCompose }} up -d --force-recreate {{ .Service.Name }}"
allLogs: "{{ .DockerCompose }} logs --tail=300 --follow"
viewAlLogs: "{{ .DockerCompose }} logs"
dockerComposeConfig: "{{ .DockerCompose }} config"
checkDockerComposeConfig: "{{ .DockerCompose }} config --quiet"
serviceTop: "{{ .DockerCompose }} top {{ .Service.Name }}"
oS:
openCommand: xdg-open {{filename}}
openLinkCommand: xdg-open {{link}}
stats:
graphs:
- caption: CPU (%)
statPath: DerivedStats.CPUPercentage
color: blue
- caption: Memory (%)
statPath: DerivedStats.MemoryPercentage
color: green
reporting: "undetermined"