Blog: 2023-08-13

From razwiki
Revision as of 23:47, 12 August 2023 by Razzi (talk | contribs)
Jump to navigation Jump to search

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"

https://docs.oracle.com/en/operating-systems/oracle-linux/podman/podman-ConfiguringStorageforPodman.html#configuring-podman-storage

And then I had to podman system reset.

Wow with this change using cached images is instantaneous! Hooray!


Also I'm passing --network host. Not sure if that's doing anything.

Github actions for weave are stuck in queue, no surprise for a free service. Would like to run them locally, perhaps using act: https://github.com/nektos/act


Should incorporate this into the readme somehow, but to run the python server from a podman container the command is:

docker run -i -t -p 5000:5000 (last-image-built) pipenv run gunicorn server:app -b :5000