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
Copy file name to clipboardexpand all lines: CHANGELOG.md
+7
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# Changelog
2
2
3
+
## 0.6.2
4
+
5
+
* Sen now has an icon! Thanks to [@Vitexus](https://github.com/Vitexus), [#161](https://github.com/TomasTomecek/sen/pull/161).
6
+
*`finished_at` is now being parsed gracefully, the same as `started_at`, by [@TomasTomecek](https://github.com/TomasTomecek), [#149](https://github.com/TomasTomecek/sen/pull/149);
7
+
thanks for report [@soyo42](https://github.com/soyo42), [#148](https://github.com/TomasTomecek/sen/pull/148)
8
+
9
+
3
10
## 0.6.1
4
11
5
12
Sen is now in maintenance mode — I am not planning on adding new features myself.
If `pip3` executable is not available on your system, you can run pip like this:
118
-
119
-
```
120
-
$ python3 -m pip install sen
121
-
```
122
-
123
117
124
118
# Prerequisite
125
119
126
120
Either:
127
121
128
-
* The unix socket for docker engine needs to be accessible. By default it's located at `/run/docker.sock`.
122
+
* The unix socket with the API for docker engine needs to be accessible. By default it's located at `/run/docker.sock`.
129
123
130
124
Or:
131
125
132
-
* Have the `DOCKER_HOST`, `DOCKER_TLS_VERIFY`, and `DOCKER_CERT_PATH` set properly. If you're using `docker-machine` or `boot2docker` you're all set!
126
+
* Have the `DOCKER_HOST`, `DOCKER_TLS_VERIFY`, and `DOCKER_CERT_PATH` set properly.
127
+
128
+
129
+
# Podman
130
+
131
+
Starting Podman v2.0, there is a [Docker-compatible
132
+
API](https://docs.podman.io/en/latest/_static/api.html) provided by Podman.
133
+
`sen` works well while talking to Podman over this API.
134
+
135
+
136
+
## Connecting to Podman
137
+
138
+
Run Podman as:
139
+
```
140
+
$ podman system service -t 0
141
+
```
142
+
143
+
Let's discover the unix socket path now:
144
+
```
145
+
$ podman info --format={{".Host.RemoteSocket.Path"}}
146
+
/run/user/1000/podman/podman.sock
147
+
```
148
+
149
+
And finally tell `sen` to connect to it:
150
+
```
151
+
$ DOCKER_HOST=unix://$(podman info --format={{".Host.RemoteSocket.Path"}}) sen
152
+
```
133
153
134
154
135
155
# Keybindings
@@ -231,8 +251,16 @@ You can enter it by typing command `df`.
231
251
232
252
# Why I started sen?
233
253
234
-
Since I started using docker, I always dreamed of having a docker TUI. Something like [tig](https://github.com/jonas/tig), [htop](http://hisham.hm/htop/) or [alot](https://github.com/pazz/alot). Some appeared over time. Such as [docker-mon](https://github.com/icecrime/docker-mon) or [ctop](https://github.com/yadutaf/ctop). Unfortunately, those are not proper docker TUIs. They are meant for monitoring and diagnostics.
254
+
Since I started using docker, I always dreamed of having a docker TUI.
255
+
Something like [tig](https://github.com/jonas/tig),
256
+
[htop](http://hisham.hm/htop/) or [alot](https://github.com/pazz/alot). Some
257
+
appeared over time. Such as
258
+
[docker-mon](https://github.com/icecrime/docker-mon) or
259
+
[ctop](https://github.com/yadutaf/ctop). Unfortunately, those are not proper
260
+
docker TUIs. They are meant for monitoring and diagnostics.
235
261
236
-
So I realized that if I want make my dream come true, I need to do it myself. That's where I started working on *sen* (*dream* in Slovak).
262
+
So I realized that if I want make my dream come true, I need to do it myself.
263
+
That's where I started working on *sen* (*dream* in Slovak).
237
264
238
-
But! As the time went, [someone](https://github.com/moncho) else had the same idea as I did: [dry](https://github.com/moncho/dry).
265
+
But! As the time went, [someone](https://github.com/moncho) else had the same
266
+
idea as I did: [dry](https://github.com/moncho/dry).
0 commit comments