Skip to content
/ pullio Public

Commit 168430f

Browse files
author
Frank Moskal
authored
allows 'docker' and 'docker-compose' binaries to be set via the local environment (#8)
1 parent bc6ff52 commit 168430f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pullio.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

3-
COMPOSE_BINARY="$(which docker-compose)"
4-
DOCKER_BINARY="$(which docker)"
3+
COMPOSE_BINARY="${COMPOSE_BINARY:-$(which 'docker-compose')}"
4+
DOCKER_BINARY="${DOCKER_BINARY:-$(which 'docker')}"
55
CACHE_LOCATION=/tmp
66
TAG=""
77
DEBUG=""

0 commit comments

Comments
 (0)