Skip to content

Instantly share code, notes, and snippets.

@rdok
Created June 30, 2019 19:57
Show Gist options
  • Save rdok/a819d450dd816deb6992c4213e79dc4b to your computer and use it in GitHub Desktop.
Save rdok/a819d450dd816deb6992c4213e79dc4b to your computer and use it in GitHub Desktop.
docker based codeception alias
function codecept() {
docker run --rm \
-w /app \
-u $(id -u):$(id -g) \
-v `pwd`:/app \
--network=host \
codeception/codeception $@
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment