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 a46710c commit 08749bfCopy full SHA for 08749bf
Makefile
@@ -0,0 +1,5 @@
1
+test:
2
+ docker-compose up test
3
+
4
+install:
5
+ cp ./gitfile.sh /usr/local/bin/gitfile
docker-compose.yml
@@ -0,0 +1,14 @@
+version: "2"
+services:
+ test:
+ image: bash:5
6
+ working_dir: /root/workspace/
7
+ volumes:
8
+ - ~/.ssh/:/root/.ssh/
9
+ - ./:/root/workspace/github/Bobonium/gitfile/
10
+ - ./gitfile.sh:/usr/local/bin/gitfile
11
+ command:
12
+ - bash
13
+ - -c
14
+ - "apk update > /dev/null 2>&1 && apk add git openssh-client > /dev/null 2>&1 && gitfile -f ./github/Bobonium/gitfile/.gitfile"
0 commit comments