Docker Environment Variables Documentation

Docker Environment Variables Documentation

avatar
(anonymous user)
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.


All Comments (2)

avatar

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

Adam Driscoll
PowerShell Expert and Developer at Devolutions

avatar

Perfect, thank you.