Closed
Description
By example, when need enable by default the uuid extension need execute additional scripts in startup:
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
But, is a great idea send the extensions by arguments, by example:
$ sudo docker run postgres -e "EXTENSION=uuid-ossp" -e "EXTENSION=other-extension" ...