frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Pkg.go.dev API

https://go.dev/blog/pkgsite-api
1•0xedb•50s ago•0 comments

HN Polisher Demo

1•j_zhan•5m ago•0 comments

NTSB pulls docket after AI recreates dead pilots' voices

https://arstechnica.com/ai/2026/05/ai-users-re-create-dead-pilots-voices-from-crash-investigation...
2•Lihh27•5m ago•0 comments

OpenAI intentionally removed Codex's visible context usage indicator

https://github.com/openai/codex/issues/23794
1•gobdovan•7m ago•1 comments

The Surprising Divide over What Counts as True

https://reason.com/2026/05/15/the-surprising-divide-over-what-counts-as-true/
1•rendx•8m ago•0 comments

DeepSeek-V4-Pro 75% off discount is now permanent

https://twitter.com/deepseek_ai/status/2057854261699195173
1•yogthos•9m ago•0 comments

JuliaMono – a monospaced font for scientific and technical computing

https://juliamono.netlify.app/
1•michaelsbradley•10m ago•0 comments

Is this what driving an F1 car feels like?

https://cameronwestland.com/is-this-what-driving-an-f1-car-feels-like/
1•camwest•10m ago•0 comments

Beautiful Monero Block Explorer, mempool.space copycat

https://monerospace.org
1•Cider9986•17m ago•0 comments

Hengefinder: Finding When the Sun Aligns with Your Street

https://victoriaritvo.com/blog/hengefinder/
1•evakhoury•18m ago•0 comments

I'm writing again (Cringely)

https://www.cringely.com/2026/05/21/im-writing-again/
2•dxs•19m ago•1 comments

Linux LPE via GRO managed-frag UAF (io_uring SEND_ZC and veth)

https://gist.github.com/lcfr-eth/2566a5cef312c94a5ff8d62fa417955f
2•Tiberium•20m ago•0 comments

No child deaths definitively linked to Covid shots, FDA says

https://www.nbcnews.com/health/health-news/no-child-deaths-definitively-linked-covid-shots-fda-sa...
7•ceejayoz•22m ago•0 comments

AI-native-founder-playbook-skills

https://github.com/Hades-HY-LI/ai-native-founder-playbook-skills
1•hades_sixy•25m ago•1 comments

AI is minting new billionaires, and workers want their share

https://restofworld.org/2026/samsung-south-korea-union-ai-profits/
6•billybuckwheat•26m ago•0 comments

you_can::turn_off_the_borrow_checker

https://docs.rs/you-can/latest/you_can/attr.turn_off_the_borrow_checker.html
2•striking•27m ago•0 comments

Private Credit Pricing: Are Prosecutors Opening Up Pandora's Box?

https://www.morningstar.com/alternative-investments/private-credit-pricing-are-prosecutors-openin...
2•petethomas•27m ago•0 comments

How Your Brain Decides What Matters

https://nautil.us/how-your-brain-decides-what-matters-1281159
3•devonnull•27m ago•0 comments

Show HN: Coder Words – An offline-first PWA word puzzle for programmers

https://7coderwords.kenamick.com/
2•p2detar•28m ago•0 comments

AI keeps inventing fake cases. Lawyers keep citing them

https://www.scientificamerican.com/article/why-lawyers-keep-citing-fake-cases-invented-by-ai/
6•voxadam•31m ago•0 comments

Models.dev: open-source database of AI model specs, pricing, and capabilities

https://github.com/anomalyco/models.dev
12•maxloh•32m ago•1 comments

Kommodo.ai Covered by Indiehackers

https://www.indiehackers.com/post/tech/pivoting-to-reach-a-wider-audience-and-hitting-a-5-figure-...
1•KommodoAI•34m ago•2 comments

Show HN: Datapoint AI – Make Something People Want, but Ask Them First

https://trydatapoint.com
3•yoloakki•34m ago•2 comments

China: What I Learned from the AI Labs, Robotics Startups and Academia

https://matthewdwhite.substack.com/p/eight-days-in-china-what-i-learned
3•rmason•35m ago•0 comments

Show HN: Slophunt.ai – Come post your vibe coded projects

https://slophunt.ai/
1•0x10ca1h0st•35m ago•1 comments

Show HN: Go Deep into Code

https://codeep.dev/
1•VladoIvankovic•35m ago•0 comments

PowerDNS Authoritative and LMDB and Lightning Stream / SLAC2026 / German [pdf]

https://www.heinlein-support.de/sites/default/files/media/documents/2026-05/SLAC2026_Authoritativ...
1•_bernd•37m ago•0 comments

DHS: Immigrants have to go back for Consular Processing

https://xcancel.com/DHSgov/status/2057817233200418837
3•dzonga•37m ago•0 comments

Show HN: OpenRig – a control plane for multi-agent coding topologies

https://www.openrig.dev/
1•mschwarz•39m ago•1 comments

LimeWire re-emerges in rush to share pulled 60 Minutes segment

https://arstechnica.com/tech-policy/2025/12/yo-what-limewire-re-emerges-in-online-rush-to-share-p...
3•rickcarlino•40m 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•12mo 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.