azukiapp / azk

azk is a lightweight open source development environment orchestration tool. Instantly & safely run any environment on your local machine.
http://azk.io
Apache License 2.0
898 stars 63 forks source link

New image: phpMyAdmin (clone) #640

Open lucassmacedo opened 8 years ago

lucassmacedo commented 8 years ago

Because the current image is specific to the PHP application and not necessarily to the database, there's a need to create a new isolated image.

gullitmiranda commented 8 years ago

Workaround

add env MYSQL_PASS in mysql export_envs in your Azkfile:

e.g.:

mysql: {
  // ...
  export_envs: {
    // ...
    MYSQL_PASSWORD: "#{envs.MYSQL_PASSWORD}",
    MYSQL_PASS: "#{envs.MYSQL_PASSWORD}",
  }
}