frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

LLMs Reward Expertise

https://www.seangoedecke.com/llms-reward-expertise/
1•meetpateltech•1m ago•0 comments

Marrow – self-hosted semantic search over your Claude Code sessions

https://github.com/gnosislabstech/marrow
1•gnosislabs•2m ago•0 comments

AGI Singer: Pluto, Recursive Alignment and Hallucination Suppression

https://medium.com/@miho999lv/agi-singer-pluto-recursive-alignment-and-hallucination-suppression-...
1•miho999lv•3m ago•0 comments

Learngraphtheory.org – Free Interactive Platform for Learning Graph Theory

https://learngraphtheory.org/
1•hadjoudj•3m ago•0 comments

Dramas in Backyard

https://www.drmindle.com/dramas-in-my-backyard/
1•drmindle12358•4m ago•0 comments

Show HN: Horch – tracks todos, people, and topics from your meetings, on-device

https://horch.app
1•mm7490•4m ago•0 comments

Pair prompt with Claude/codex AI agents

https://liveshortly.com
1•malviyamukul•4m ago•0 comments

The balance-sheet is out of kilter with its economy

https://economist.com/finance-and-economics/2026/07/23/the-worlds-balance-sheet-is-out-of-kilter-...
1•andsoitis•5m ago•0 comments

Retrotechnology Media

https://typewritten.org/Media/
1•surprisetalk•6m ago•0 comments

SpaceX Delays Major Flight Test Again in Post-IPO Spotlight

https://www.bloomberg.com/news/articles/2026-07-23/spacex-attempts-major-flight-test-again-in-pos...
1•1vuio0pswjnm7•7m ago•0 comments

Alphabet's Future Spending Commitments Soar to $811B

https://www.bloomberg.com/news/articles/2026-07-23/alphabet-s-future-spending-commitments-soar-to...
1•1vuio0pswjnm7•9m ago•0 comments

Ural: Fresh start or final straw? (2025)

https://www.revzilla.com/common-tread/ural-fresh-start-or-beginning-of-the-end
1•YeGoblynQueenne•10m ago•0 comments

Local bookstore battles false Google AI Summary

https://www.news5cleveland.com/news/local-news/were-open-local-bookstore-battles-false-google-ai-...
1•KentGeek•11m ago•0 comments

How the God of Israel Was Born

https://andreafontana.it/en/birth-god-israel-yahweh-el.html
1•trikko•12m ago•0 comments

EU Escalates TikTok Probe over Lack of Privacy Protections

https://www.bloomberg.com/news/articles/2026-07-24/eu-escalates-tiktok-probe-over-lack-of-teen-pr...
1•1vuio0pswjnm7•13m ago•0 comments

How AI is quietly making your team fragile

https://stvn.sh/writing/regression-to-the-mean
1•mooreds•13m ago•0 comments

ICC members set to vote on removing Karim Khan after barring defense team

https://thecradle.co/articles-id/38986
1•NordStreamYacht•14m ago•0 comments

Anyone else like llms.txt for architecture docs?

1•jbdamask•15m ago•0 comments

Show HN: Turn any recipe into 2-player mode

https://nommer.ai/
2•gghootch•16m ago•0 comments

Sidecar Steering Dampers

https://www.sidecars.org.uk/steering-dampers.html
1•YeGoblynQueenne•17m ago•0 comments

The loudest person wins architecture discussions

https://thehardparts.dev/red-flags/the-loudest-person-wins-architecture-discussions
2•ludovicianul•19m ago•0 comments

Show HN: ShiftType – Tap Shift to switch input methods on macOS

https://apps.indiemaze.com/shifttype/
1•sebjones•20m ago•0 comments

I let an AI agent run my job search: the real numbers, including the LLM bill

https://find-best-job.com/en/blog/agent-job-search-real-numbers
2•viniciuscar•22m ago•0 comments

Pauli's exclusion principle is one wall of a polytope; we mapped all 799 corners

https://nutfieldsecurity.com/posts/ai-vacation-physics/
1•pizzadad•22m ago•1 comments

Patreon laying off 20% of staff

https://www.patreon.com/jackconte/posts/painful-update-164628951
10•gpi•24m ago•1 comments

European firms plan exo-atmospheric interceptor for 2027 test

https://www.defensenews.com/global/europe/2026/07/15/european-firms-plan-exo-atmospheric-intercep...
2•TechTechTech•24m ago•0 comments

OpenShell Kubernetes Operator

https://github.com/lensapp/openshell-k8s-operator
2•xfiler•25m ago•0 comments

Ah, the Codeberg Drama

https://gagliardoni.net/#20260724_codeberg_drama
3•tomgag•26m ago•1 comments

A Modern Interpretation of Live Streaming in the Cars 2 Cinematic Universe

https://moq.dev/blog/cars2/
1•surprisetalk•26m ago•0 comments

The assault on science funding continues

https://www.science.org/content/blog-post/assault-science-funding-continues
4•tacomonstrous•28m ago•1 comments
Open in hackernews

Ask HN: What's the best way to deploy container-based apps for a small project?

1•pxheller•1y ago
Hi HN,

For the last couple of months I've been working on a side project I'd now finally like to publish.

I developed and packaged everything into a few small docker containers (2 python apps, 1 postgres db, and 1 db cleanup script in another container. I'll likely also add some reverse proxy like Nginx or Caddy) and run it locally using docker-compose, with all secrets in a .env file (although I could use docker secrets)

I thought about either using a managed Kubernetes service from a provider like DigitalOcean, or setting up a vServer from scratch with the help of some online guides and ChatGPT/Claude (as I don't have a lot of infrastructure experience).

What is your guys go-to-stack? Any recommendations that are relatively simple (or well-documented) to setup while still being cost-efficient and easy to scale? What are your experiences with services like dokku or dokploy?

Re scaling: I also considered using an external Postgres provider, allowing me to scale the "worker" services horizontally when needed.

Asked here because I'm sure it might be relevant for others, too. Thanks in advance!

Comments

austin-cheney•1y ago
I wrote a Nodejs application to do this for me. It’s a personal project that serves as a dashboard for spawning web servers and docker compose instances. I am the only user of it so it’s probably not stable. The UI displays in a browser.

https://github.com/prettydiff/webserver

huksley•1y ago
My experience:

- Dokku - too much shell scripting and you forget all the commands you typed after 1 year.

- Dokploy - you need to install it on your host. So it makes it difficult to switch to a bigger host.

So now I am actively developing a new platform which solves all this - DollarDeploy.

It makes it easy to deploy app from GitHub repo to the server of your choice, and automatically generate HTTPs cert, manage hosts, backups etc for $1/app/month.

Would be nice if you give it a try and provide feedback!

byrnedo•1y ago
If you want, give skate a try ( https://github.com/skateco/skate ). I built it out of the frustration of having to learn the custom deploy syntax of all these other alternatives, instead it uses kubernetes manifests and is multi host.