-
Notifications
You must be signed in to change notification settings - Fork 37
Uninstall script or doc #136
Comments
I'm using IP based mappings for the project. If I change that in docker-compose.yml the web container starts, but the site still doesn't load. |
@leevh what is your OS? Please always specify OS. Uninstall functionality is currently in development. Looks like you have port 80 explicitly exported in your Most likely for ports:
- "80:80"
... Instead you should have ports:
- "80"
...
environment:
- VIRTUAL_HOST=myproject.drude Replace Please try changing your If you're still not able to access your site then you would need to put it into your hosts file (
Not recommended way: alternatively you can stop Drude system services. This functionality is only available in development version at the moment. You can update to it with
After that you will be able to stop reverse proxy with |
Sorry about that, here is dsh sysinfo: https://gist.github.com/leevh/eafd25b02cd8b99a19a85bee711c35d1 and docker-compose.yml https://gist.github.com/leevh/708b35e9bd9c3a107f0f8080235bd6bf I was using dedicated IPs for this project |
@leevh got it. So my recommendation would be stop using dedicated IPs in your It's recommended to update all your projects to use flexible external port and virtual host name instead. # Web node
web:
hostname: web
image: blinkreaction/drupal-apache:2.2-stable
ports:
- "80"
- "443"
volumes:
# Project root folder mapping
- &project_root ".:/var/www"
links:
- cli
environment:
- VIRTUAL_HOST=automata_local.drude Drude includes 3 default system services at the moment:
Look at last column for names. You'll see 3 of them running. If they are not running on your system for some reason please run
After that your Drude site should be available as p.s. You can always stand up a Drupal 7 test project we created for learning purposes and see how it's done there. https://github.com/blinkreaction/drude-d7-testing |
P.S. If for some reason you still need to use IP binding please follow that "Not recommended way" above. Update dsh to develop version and stop Drude proxy.
|
@achekulaev thank you very much, this is awesome info and by following your steps got drude working again! Just curious, is the drude-d8-testing project up to date like the drude-d7-testing project? I noticed a lot of difference in the .drude folder of each. thanks again for the awesome help and for open sourcing an awesome dev tool! |
Drude Mac OS uninstall Remove ~/.drude |
Wondering if there are any docs for completely cleaning a system of drude. I only ask because I tried updating today to dsh 1.20.0 and I'm getting multiple errors. I was hoping to start over from scratch.
The errors are:
On dsh up for a project:
After trying to purge everything and run dsh install prerequisites, I got:
Not really sure what to do now, any advice would be great, thanks
The text was updated successfully, but these errors were encountered: