wordup-dev / wordup-cli

Wordup is a fully integrated development platform for WordPress. Develop plugins and themes locally. Preview in the cloud. Automatic updates in WP.
GNU General Public License v3.0
118 stars 16 forks source link

Delete completely a project #37

Closed globdug closed 4 years ago

globdug commented 4 years ago

Hello, I have created two project just to try. Then I deleted theme with wordup stop -d --delete and deleted the folders of these project. Then I created another project and when I type wordup start I receive this error :

--- Currently running wordup projects: project1,project2 ---

Installing wordup project and connected docker containers (can take some minutes)... - » Error: There was an error while booting the docker containers. Perhaps the port is already
» taken.

How can I delete those projects?

shry commented 4 years ago

It depends on the version you are running.

The new v1.0.0 has a --force flag for the wordup stop command. But it only works for new projects created with this version and its not backwards compatible with old projects.

But you have always the option to delete the docker containers manually. Run: docker ps --filter label=wordup.dev and delete the corresponding containers with docker rm -f <container-id>

globdug commented 4 years ago

Thank you very much, I deleted them manually. :)