Skip to content

Instantly share code, notes, and snippets.

@mrclay
Created April 13, 2022 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrclay/d439e038464f789e2af5abfec41935e0 to your computer and use it in GitHub Desktop.
Save mrclay/d439e038464f789e2af5abfec41935e0 to your computer and use it in GitHub Desktop.
Allows inspecting docker builds in ddev projects
#!/bin/bash
# Like docker compose build [SERVICE].
#
# USAGE: ddev-build [SERVICE]
#
function ddev-build {
~/.ddev/bin/docker-compose -f .ddev/.ddev-docker-compose-full.yaml build $1 --no-cache --progress=plain
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment