GetPostgresVolumeName returns the Docker volume name of the postgres/database volume For historical reasons this isn't lowercased.
()
| 3777 | // GetPostgresVolumeName returns the Docker volume name of the postgres/database volume |
| 3778 | // For historical reasons this isn't lowercased. |
| 3779 | func (app *DdevApp) GetPostgresVolumeName() string { |
| 3780 | return app.Name + "-postgres" |
| 3781 | } |
| 3782 | |
| 3783 | // GetComposeProjectName returns the name of the docker-compose project |
| 3784 | func (app *DdevApp) GetComposeProjectName() string { |
no outgoing calls