start_docker.sh # start Docker anywhere up: @if [ -n "$(docker ps -q)" ]; then \ echo "Stopping existing containers..."; \ docker stop $(docker ps -q); \ fi; \ echo "Starting project containers..."; \ doc up 21.03.2025 | Lothar Ferreira Neumann Start Docker anywhere via just task
zsh_docker_function_alias.sh docker_stop_prefix() { noglob docker container stop $(docker container ls -q --filter "name=$1-*") } alias ds='docker_stop_prefix' 14.02.2025 | Peter Majmesku Stop Docker containers for a project from any path
fix_php_version.sh // Remove the vendor folder rm -rf vendor // Switch inside the container (if you are using Docker) doc exec bash // Now run Composer inside the container /usr/local/bin/composer install 15.08.2024 | Lothar Ferreira Neumann How to handle a wrong PHP version in the vendor folder
docker-compose.darwin.yml services: drupal: environment: - PHP_OVERRIDE=darwin - SETTINGS_PERM=644 25.07.2024 | Lothar Ferreira Neumann Enable debugging and customization of the Drupal setup on macOS (Darwin)
docker-compose.offline.yml services: web: cap_drop: - NET_RAW 19.03.2026 | Peter Gerken Block raw network access for a container