openedx / wg-devops

Issue repository for the DevOps Working Group
1 stars 1 forks source link

Removing a mount should stop any services created by that mount #43

Open kdmccormick opened 9 months ago

kdmccormick commented 9 months ago

Background

Example:


tutor mounts add path/to/frontend-app-course-authoring
tutor images build  # builds a new image: course-authoring-dev
tutor dev start -d  # starts a new service: course-authoring

tutor mounts remove path/to/frontend-app-course-authoring
tutor dev stop      # course-authoring isn't stopped!

tutor mounts add path/to/frontend-app-course-authoring
tutor dev stop      # NOW course-authoring is stopped
tutor mounts remove path/to/frontend-app-course-authoring

### Tasks

TBD

### Notes

_No response_