hosaka

joined 1 year ago
[–] hosaka@programming.dev 1 points 1 month ago

Glad you figured it out! A separate network for a set of services that need to talk to eachother is the way I do it for my selfhosted tools, if you want some more ideas on setting up the *arr apps using docker compose, this is my current setup: https://github.com/hosaka/selfhosted/blob/main/servarr.yml

[–] hosaka@programming.dev 1 points 1 month ago* (last edited 1 month ago) (2 children)

I think you're using docker internal IPs, which are not static and can change between docker compose runs. You can instead address them by name if you connect then to a same virtual network: https://docs.docker.com/compose/networking/#specify-custom-networks

This allows two service to "see eachother". For example "calibre:8081" will resolve to an internal IP address. I'm general, this is a better approach when you need to connect apps to each other.

[–] hosaka@programming.dev 1 points 1 month ago

Also allows you to use hardware acceleration for inference. Quite a comprehensive set of tools actually, also the new revamped UI is on the horizon with version 0.14

[–] hosaka@programming.dev 5 points 10 months ago

Can't you just install the extension (vsix is the file extension I think) package manually in vscodium?

[–] hosaka@programming.dev 1 points 11 months ago

Yeah you're totally right. Nonetheless the use case has it's place. People buy and use hobbyist hardware, and this is a market on its own.

[–] hosaka@programming.dev 2 points 11 months ago (2 children)

Take a look at micropython, some drivers are writing in pure python, I've written a display driver previously