docker-compose: Wrap DSN values in quotes so spaces are allowed

pull/142/head
Mike Lang 5 years ago
parent ff18c7df54
commit a6cd07077a

@ -133,7 +133,7 @@
// The connection string for the database. Constructed from db_args.
db_connect:: std.join(" ", [
"%s=%s" % [key, $.db_args[key]]
"%s='%s'" % [key, $.db_args[key]]
for key in std.objectFields($.db_args)
]),

Loading…
Cancel
Save