7 lines
197 B
Bash
Executable file
7 lines
197 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
current_commit=$( git rev-parse HEAD )
|
|
current_branch=$( git rev-parse --abbrev-ref HEAD )
|
|
|
|
|
|
docker-compose -f docker/debug/docker-compose.yml -p "${PWD}-${current_branch}" $@
|