Blog: 2023-08-13: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
https://github.com/asdf-community/asdf-ubuntu |
https://github.com/asdf-community/asdf-ubuntu |
||
Also trying to get podman to run faster, podman info gives storage of vfs. Apparently overlayfs is faster, so I set it like so: |
Also trying to get podman to run faster, podman info gives storage of vfs. Apparently overlayfs is faster, so I set it like so:<syntaxhighlight lang="bash"> |
||
functions $ cat ~/.config/containers/storage.conf |
|||
o |
|||
[storage] |
|||
driver = "overlay" |
|||
</syntaxhighlight>And then I had to <code>podman system reset</code>. |
|||
Also I'm passing <code>--network host</code>. Not sure if that's doing anything. |
Revision as of 22:33, 12 August 2023
Trying to get asdf working in docker, this example is useful to get rid of all the hacks:
https://github.com/asdf-community/asdf-ubuntu
Also trying to get podman to run faster, podman info gives storage of vfs. Apparently overlayfs is faster, so I set it like so:
functions $ cat ~/.config/containers/storage.conf
[storage]
driver = "overlay"
And then I had to podman system reset
.
Also I'm passing --network host
. Not sure if that's doing anything.