7 lines
199 B
Text
7 lines
199 B
Text
|
#!/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}" $@
|