Docker Environment Variables Documentation

Product: PowerShell Universal
Version: 5.0.0 Beta 7

Is there documentation for the available environment variables and their accepted values? I am trying to set up a PostgreSQL connection in my docker compose file and I only see an example for SQL. I am not sure if the Plugins__0 EV wants a value other than SQL and then how the connection string is expected to be formatted.

You would do:

Plugins__0 = PostgreSQL
Data__ConnectionString = Host=PGhostname; Database=PGdatabase; User Id=PGusername; Password=PGpassword!;Port=5432

Took the values from here: Persistence | PowerShell Universal

Perfect, thank you.