GetMariaDBVolumeName returns the Docker volume name of the mariadb/database volume For historical reasons this isn't lowercased.
()
| 3771 | // GetMariaDBVolumeName returns the Docker volume name of the mariadb/database volume |
| 3772 | // For historical reasons this isn't lowercased. |
| 3773 | func (app *DdevApp) GetMariaDBVolumeName() string { |
| 3774 | return app.Name + "-mariadb" |
| 3775 | } |
| 3776 | |
| 3777 | // GetPostgresVolumeName returns the Docker volume name of the postgres/database volume |
| 3778 | // For historical reasons this isn't lowercased. |
no outgoing calls