We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62defdf commit fe18497Copy full SHA for fe18497
Makefile
@@ -9,7 +9,7 @@ build:
9
docker.io build -t $(NAME):$(VERSION) --rm .
10
11
test:
12
- env NAME=$(NAME) VERSION=$(VERSION) ./test.sh
+ env NAME=$(NAME) VERSION=$(VERSION) ./test-repository.sh
13
14
tag_latest:
15
docker.io tag $(NAME):$(VERSION) $(NAME):latest
test/tools/run-container.sh
@@ -1,7 +1,7 @@
1
#!/bin/sh
2
3
-echo "docker.io run --name $testContainer $runOptions -d $testImage"
4
-ID=`docker.io run --name $testContainer $runOptions -d $testImage`
+echo "docker.io run --name $testContainer $runOptions -d $testImage $runCommand"
+ID=`docker.io run --name $testContainer $runOptions -d $testImage $runCommand`
5
sleep 10
6
7
echo " --> Obtaining IP"
0 commit comments