Hi!
I noticed that the Docker Compose example in the wiki still uses the DATABASE_URL environment variable:
environment:
- DATABASE_URL=postgres://...
However, recent versions of pgweb expect the connection string to be provided via PGWEB_DATABASE_URL instead.
So the example should be updated to:
environment:
- PGWEB_DATABASE_URL=postgres://...
Otherwise, users following the current documentation may find that pgweb doesn’t automatically connect to the database.
Thanks for maintaining pgweb!
Hi!
I noticed that the Docker Compose example in the wiki still uses the
DATABASE_URLenvironment variable:However, recent versions of pgweb expect the connection string to be provided via
PGWEB_DATABASE_URLinstead.So the example should be updated to:
Otherwise, users following the current documentation may find that pgweb doesn’t automatically connect to the database.
Thanks for maintaining pgweb!