Painted-Fox / docker-postgresql

A dockerfile that produces a docker image that runs postgresql.
MIT License
72 stars 57 forks source link

Multiple db's: $DB and $EXTENSIONS are escaped #26

Closed ykhalyavin closed 10 years ago

ykhalyavin commented 10 years ago

In order to make "for" loop works with multiple values in $DB and $EXTENSIONS we have to escape these variables.

Example: DB="db1 db2" EXTENSIONS="ex1 ext2"

Without escaping it will cause shell error.

Painted-Fox commented 10 years ago

Thank you!