Skip to content

Commit 82c8b18

Browse files
committed
Removed source branch image name in templates
1 parent dfa0565 commit 82c8b18

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Refer to master branch
1414
- Refactored Docker hook scripts into reusable functions
1515
- Fix issue with short tags not being pushed
1616
- Fixed `make rm_build`
17+
- Removed source branch image name in templates
1718

1819
## \[v1.1.1\] - 2019-10-14
1920

template/composer.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22

3-
docker run --rm -it -w=/app -v "$(pwd)":/app -v ~/.ssh:/root/.ssh -v "$HOME/.composer-docker":/root/.composer jestefane/php-dev:%%PHP_VERSION%%-cli-%%SOURCE_BRANCH%% composer "$@"
3+
docker run --rm -it -w=/app -v "$(pwd)":/app -v ~/.ssh:/root/.ssh -v "$HOME/.composer-docker":/root/.composer jestefane/php-dev:%%PHP_VERSION%%-cli composer "$@"

template/php.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22

3-
docker run --rm -it -w=/app -v "$(pwd)":/app jestefane/php-dev:%%PHP_VERSION%%-%%PHP_VARIANT%%-%%SOURCE_BRANCH%% "$@"
3+
docker run --rm -it -w=/app -v "$(pwd)":/app jestefane/php-dev:%%PHP_VERSION%%-%%PHP_VARIANT%% "$@"

0 commit comments

Comments
 (0)