this post was submitted on 23 May 2025
91 points (96.0% liked)

homeassistant

14504 readers
2 users here now

Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. Available for free at home-assistant.io

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] traches@sh.itjust.works 10 points 1 week ago (2 children)

Docker is so much easier to fuck with than python

[–] madjo@feddit.nl 4 points 1 week ago (1 children)

I seem to be unable to wrap my head around Docker. I have one application running through Docker (Immich) but I have no idea how it works. It's running, and until further notice, I ain't touching it.

I have Home Assistant running through an instance on my Proxmox server. That I can understand much better than anything Docker.

[–] traches@sh.itjust.works 3 points 1 week ago (1 children)

It’s worth taking the effort to learn if you want to self host stuff. The neat part is once you learn it, you can self host basically anything. Think of a container like a little packaged application that can only interact with the outside world through pathways you give it, either through volume mounts (files) or port mappings (network).

Immich is one of the more complicated and intimidating docker-compose files out there. Try something like glance or miniflux to get a gentler introduction.

[–] madjo@feddit.nl 3 points 1 week ago

So far I've created a new ProxMox container for each application I wanted to run. So I have pihole running in an LXC, Nextcloud in another LXC, Audiobookshelf in yet another LXC, Home Assistant in a VM, etc.

I'm sure that could be done more efficiently with Docker, but for some reason that just doesn't want to click. I don't know where the applications end up installed at, I don't know how to configure stuff, nor how to run multiple docker containers on the same machine.

Immich is the first application I have managed to get running full time in Docker, but I've already encountered an issue with uploads that I can't solve, because I have no idea where to find the config files, nor how to restart it. So I'll leave it as is, for now. Maybe when my brain can get engaged, I can try again.