You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -31,7 +29,7 @@ Memorising docker commands is hard. Memorising aliases is slightly less hard. Ke
31
29
32
30
## Requirements
33
31
34
-
- Docker >= **1.8** (API >= **1.20**)
32
+
- Docker >= **1.8** (API >= **1.25**)
35
33
- Docker-Compose >= **1.23.2** (optional)
36
34
37
35
## Installation
@@ -197,18 +195,23 @@ If you want to see what I (Jesse) am up to in terms of development, follow me on
197
195
## FAQ
198
196
199
197
### How do I edit my config?
198
+
200
199
By opening lazydocker, clicking on the 'project' panel in the top left, and pressing 'o' (or 'e' if your editor is vim). See [Config Docs](/docs/Config.md)
201
200
202
201
### How do I get text to wrap in my main panel?
202
+
203
203
In the future I want to make this the default, but for now there are some CPU issues that arise with wrapping. If you want to enable wrapping, use `gui.wrapMainPanel: true`
204
204
205
205
### How do you select text?
206
+
206
207
Because we support mouse events, you will need to hold option while dragging the mouse to indicate you're trying to selecttext rather than click on something. Alternatively you can disable mouse events via the `gui.ignoreMouseEvents` config value
207
208
208
209
### Does this work with Windows?
210
+
209
211
Currently not unless you use WSL. Instructions for setting up docker for WSL can be found here [here](https://nickjanetakis.com/blog/setting-up-docker-for-windows-and-wsl-to-work-flawlessly)
210
212
211
213
### Why can't I see my container's logs?
214
+
212
215
By default we only show logs from the last hour, so that we're not putting too much strain on the machine. This may be why you can't see logs when you first start lazydocker. This can be overwritten in the config's `commandTemplates`
// Services contains the custom commands for services
267
+
// Images contains the custom commands for images
264
268
Images []CustomCommand`yaml:"images,omitempty"`
265
269
266
-
// Services contains the custom commands for services
270
+
// Volumes contains the custom commands for volumes
267
271
Volumes []CustomCommand`yaml:"volumes,omitempty"`
268
272
}
269
273
@@ -289,6 +293,9 @@ type CustomCommand struct {
289
293
// field has no effect on customcommands under the 'communications' part of
290
294
// the customCommand config.
291
295
ServiceNames []string`yaml:"serviceNames"`
296
+
297
+
// InternalFunction is the name of a function inside lazydocker that we want to run, as opposed to a command-line command. This is only used internally and can't be configured by the user
0 commit comments