drush command runner for Wodby aliases
Save the file in /usr/local/bin/
(or anywhere else as long as it is in your $PATH
) and verify that it is executable.
a. Right click on "Raw" button (for drcmd) and copy the URL.
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
. |
server { | |
server_name SERVER_NAME; | |
listen 80; | |
root /var/www/html/; | |
index index.php; | |
fastcgi_keep_conn on; | |
fastcgi_index index.php; | |
fastcgi_param QUERY_STRING $query_string; |