Sheape
Sheape
TTCTheo's Typesafe Cult
Created by darfdx on 1/21/2025 in #questions
[SOLVED] New to Docker, can't connect from localhost to DB on container
see, that was always my problem when trying to do docker with postgres XD. always happy to help
21 replies
TTCTheo's Typesafe Cult
Created by darfdx on 1/21/2025 in #questions
[SOLVED] New to Docker, can't connect from localhost to DB on container
you can try running this on windows to see if anything is also taking up that port. netstat -an | find "5432", cuz its possible that an existing postgres instance is already running but your docker compose just couldn't exposed it.
21 replies
TTCTheo's Typesafe Cult
Created by darfdx on 1/21/2025 in #questions
[SOLVED] New to Docker, can't connect from localhost to DB on container
Im guessing you dont have any other ports with 5432 open (like installing postgres as a background service and running it). There's probably a windows command equivalent to lsof -i :5432 which outputs the apps that have that ports exposed.
21 replies
TTCTheo's Typesafe Cult
Created by 404 on 1/13/2025 in #questions
Will there be a linux desktop app for T3 Chat?
Im hoping it will get package to Appimage. Appimage just solves all of the issues with X11/Wayland compatibility or external dependencies (unless your dealing with Qt libraries). Building it from source would be kind of a pain as it would need to be supported for x86_64, x86, ARM, RISC-V (as if anybody would actually use that for T3 Chat), and would also mean compatibility for glibc and musl-libc (if your a gentoo/void nerd). Also never heard of any app porting to different distros with different binaries, usually its on a package format basis (such as t3-chat.xbps for void linux, t3-chat.deb for debian/ubuntu) cuz packages still require signing for security. I've personally packaged my own apps before for void, works great but would be painful to make a package for all distros.
3 replies