The port for your postgres container is still the same for other containers, what you did was just map 5432 to 8765 for your host.
You don't need to change the port or the host the immich services try to access within the network docker compose creates.
You still have container_name: immich_postgres so you didn't change anything for the other containers.
What you did was change how to write the command to up or down the container.
From docker compose up database to docker compose up immich-database (which normally you won't use since you want to up and down everything at once).
If you do docker ps you'll still see the name of the container is immich_postgres
Same, I have multiple services running in some machines and I've never had the need to modify the ports inside each docker-compose network.
Just the exposed ports are the ones I've changed, and just for integrating with external services or the reverse proxy.
And expert or someone knowledgeable may not have the time to invest in a community. A mod is a volunteer who helps ensure rules are followed and we can have a place to discuss about a topic.
But a mod insulting the community is a different problem. It's doing something which they should be helping mitigate.
I've been using traccar (https://github.com/traccar/traccar).
It's mostly for fleet management, but I've been using it as a replacement for Google maps timeline.
Its android apps ara basic but haven't had any problems with them.
Or if you find a service which doesn't provide a client you can use this app https://github.com/mendhak/gpslogger
It allows you to send the gps data to different services with their specific formats at the same time. I was using it to send the data to traccar while also saving it in a local file.
Well, I'm just starting with serious backups, AFAIK you only need to backup the data which you can't replicate.
Low seeded torrents are just hard to get, but not impossible.
Personal photos, your notes, any other files generated by you are the ones which need backups.
I don't lose any data, it just hides, when I unplug then plug it the data is still there.
All files hide during these issues, it's as if the drive was empty.
Since I'm just starting to play with having a samba share the drive is just in a m2 to usb-c adapter, so I don't have a good way to put a heat sink.
The model is INTEL SSDPEKNW512G8
Not sure the drive is bad, I haven't had any issues reading and writing when it stays cool.
Nothing pops up here right now (I'll run this again when the files go away):
SMART/Health Information (NVMe Log 0x02)
Critical Warning: 0x00
Temperature: 27 Celsius
Available Spare: 100%
Available Spare Threshold: 10%
Percentage Used: 15%
Data Units Read: 81,612,542 [41.7 TB]
Data Units Written: 84,328,422 [43.1 TB]
Host Read Commands: 1,451,227,797
Host Write Commands: 1,629,160,090
Controller Busy Time: 40,573
Power Cycles: 1,648
Power On Hours: 16,681
Unsafe Shutdowns: 96
Media and Data Integrity Errors: 0
Error Information Log Entries: 10
Warning Comp. Temperature Time: 0
Critical Comp. Temperature Time: 0
Thermal Temp. 1 Transition Count: 338
Thermal Temp. 1 Total Time: 2915
I got annoyed at not finding CC for the media I have dubbed, so if the show/movie is originally in English and I have it in Spanish, the Spanish subtitles are not from the Spanish audio, but translations of the English audio, so they don't usually match.
(which Tom Scott recently made a video about this issue https://youtu.be/pU9sHwNKc2c)
I found and been using this project https://github.com/jhj0517/Whisper-WebUI
It's been pretty good, for youtube videos (10-30 minutes) has been perfect.
But there are some issues when I tried it with movies, the timings are not great, and sometimes it hallucinates some words in parts where there aren't any. Just a few words are actually wrong/missing.
(I tried it with fastwhisper since I don't have that much ram)
Well, that's what has always been mentioned, defederated from them, AFAIK there's no way of blocking it completely from the fediverse, so if your instance's admin wants they can decide to not block them and you can interact with meta.
If your instance defederates and you want to still see their activity then you can choose an instance which is still federated with them.
IIRC most stuff can be done with vanilla JS in any modern browser.
Although, I've been doing little front-end work, and mostly for personal projects, nothing fancy nor production ready, so someone might have another opinion about using jQuery.
I pre-processed my library since I know exactly what devices I'll be using to play my library, so I just found a common format for audio, video, and subtitles.
Then with the help of jellyfin's transcoding logs I manually created the commands for non-real-time transcoding (depending on your hardware this new command could not make much difference in processing time, but it'll definitely make a difference in the quality of the output).
With that now I can use rclone to upload my files to a cheap S3 compatible service and just mount it in any computer for jellyfin to read.
I'm using iDrive e2.
Although I'm only using a few TB while I buy a HDD, so for a dozen or more, I'll definitely will go directly to buy my own hardware.
I recently switched to ubuntu in a gaming laptop, right now I've been using it just for jellyfin and some other coding tasks, but it definitely runs smoother, more stable, quicker, and cooler than windows did for the same workload.
I was surprised at the difference of even just having the machine idle, on windows it was noticeable warm, now on ubuntu it's almost as if it has been turned off.
You can host your own instance to share your opinions.
Still don't expect other instances for allowing content they don't want to be federated with, so you might have where to say something but it might not reach everyone.
Not OP, but I'm thinking about the example in vs code: https://code.visualstudio.com/docs/editor/userdefinedsnippets
Some boilerplate code for libraries and frameworks I constantly use.
I'd be more interested in syncing the VS code snippets as they are automatically available in a file for each language and have the autocomplete stops.
I resorted to buy a new one with android tv, so now I just have tailscale installed in it and can directly play jellyfin.
The issue is the chromecast can't resolve back to the tailnet with subrouting.
Probably connecting the chromecast to a network which resolves the connections for it could work, but I don't know how to do that or if it's actually possible.
The port for your postgres container is still the same for other containers, what you did was just map 5432 to 8765 for your host.
You don't need to change the port or the host the immich services try to access within the network docker compose creates. You still have
container_name: immich_postgres
so you didn't change anything for the other containers.What you did was change how to write the command to up or down the container. From
docker compose up database
todocker compose up immich-database
(which normally you won't use since you want to up and down everything at once).If you do
docker ps
you'll still see the name of the container isimmich_postgres