File tree Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ RUN ssh-keyscan github.com >> /root/.ssh/known_hosts
100
100
101
101
COPY ./root/bash_profile /root/.bash_profile
102
102
COPY ./root/ssh/config /root/.ssh/config
103
+ COPY ./root/ssh/github.pkey /root/.ssh/github
103
104
104
105
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
105
106
RUN apt-get -y install nodejs
Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ RUN ssh-keyscan github.com >> /root/.ssh/known_hosts
103
103
104
104
COPY ./root/bash_profile /root/.bash_profile
105
105
COPY ./root/ssh/config /root/.ssh/config
106
+ COPY ./root/ssh/github.pkey /root/.ssh/github
106
107
107
108
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
108
109
RUN apt-get -y install nodejs
Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ xf2-export() {
29
29
php cmd.php xf-dev:export --addon=$1
30
30
}
31
31
32
+ xf2-api-docs () {
33
+ php cmd.php xf-dev:generate-api-docs --force --renderer=xf2Html --target=src/addons/$1 /_no_upload/api.html $1
34
+ }
35
+
32
36
xf2-better-export () {
33
37
php cmd.php tck-devtools:better-export $1 --skip-export
34
38
php cmd.php tck-devtools:build-readme $1 --markdown --copy
Original file line number Diff line number Diff line change 2
2
AddKeysToAgent yes
3
3
4
4
Host github.com
5
+ HostName github.com
6
+ #Port 443
7
+ PreferredAuthentications publickey
8
+ AddKeysToAgent yes
9
+ IdentityFile /root/.ssh/github
10
+
11
+ Host ssh.github.com
5
12
HostName ssh.github.com
6
- Port 443
13
+ # Port 443
7
14
PreferredAuthentications publickey
8
15
AddKeysToAgent yes
9
- IdentityFile /var/www/git/docker-php-apache/ github.pkey
16
+ IdentityFile /root/.ssh/ github
You can’t perform that action at this time.
0 commit comments