Skip to main content
โ† News
Newsยท admin

Multiple projects on one server with Docker Compose

How I run several projects on one VPS without port conflicts: the host Nginx + local ports architecture.

Multiple projects on one server with Docker Compose

The cleanest way to host several projects on a small VPS:

  • Each project isolated with its own docker-compose.yml
  • Ports bound to 127.0.0.1 only
  • A single host Nginx proxies each domain to the right port

This very site runs on the same scheme. ๐Ÿ˜‰

  • #Python