Docs / App Marketplace / How to Deploy PostgreSQL from the Marketplace

How to Deploy PostgreSQL from the Marketplace

By Admin · Feb 25, 2026 · Updated Apr 23, 2026 · 154 views · 1 min read

PostgreSQL is a powerful open-source relational database with advanced features.

What's Included

  • PostgreSQL server (latest LTS)
  • Common extensions installed
  • Configured for local access

After Deployment

sudo -u postgres psql

Create a Database

CREATE USER myuser WITH PASSWORD 'StrongPassword!';\nCREATE DATABASE myapp OWNER myuser;

Remote Access

To allow remote connections, edit postgresql.conf and pg_hba.conf, then configure your firewall. See our dedicated PostgreSQL remote access guide.

Was this article helpful?