Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 165f8ca

Browse filesBrowse files
committed
Add initial jq-based templating engine
1 parent b44c4f1 commit 165f8ca
Copy full SHA for 165f8ca

61 files changed

+605-605Lines changed: 605 additions & 605 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.gitattributes‎

Copy file name to clipboard
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**/Dockerfile linguist-generated
2+
**/apache2-foreground linguist-generated
3+
**/docker-php-* linguist-generated
4+
Dockerfile*.template linguist-language=Dockerfile
Collapse file
+22Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Verify Templating
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
defaults:
8+
run:
9+
shell: 'bash -Eeuo pipefail -x {0}'
10+
11+
jobs:
12+
apply-templates:
13+
name: Check For Uncomitted Changes
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Apply Templates
18+
run: ./apply-templates.sh
19+
- name: Check Git Status
20+
run: |
21+
status="$(git status --short)"
22+
[ -z "$status" ]
Collapse file

‎.gitignore‎

Copy file name to clipboard
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.jq-template.awk
Collapse file

‎7.2/alpine3.11/cli/Dockerfile‎

Copy file name to clipboardExpand all lines: 7.2/alpine3.11/cli/Dockerfile
+2-6Lines changed: 2 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎7.2/alpine3.11/fpm/Dockerfile‎

Copy file name to clipboardExpand all lines: 7.2/alpine3.11/fpm/Dockerfile
+2-5Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎7.2/alpine3.11/zts/Dockerfile‎

Copy file name to clipboardExpand all lines: 7.2/alpine3.11/zts/Dockerfile
+2-5Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎7.2/alpine3.12/cli/Dockerfile‎

Copy file name to clipboardExpand all lines: 7.2/alpine3.12/cli/Dockerfile
+2-6Lines changed: 2 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎7.2/alpine3.12/fpm/Dockerfile‎

Copy file name to clipboardExpand all lines: 7.2/alpine3.12/fpm/Dockerfile
+2-5Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎7.2/alpine3.12/zts/Dockerfile‎

Copy file name to clipboardExpand all lines: 7.2/alpine3.12/zts/Dockerfile
+2-5Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎7.2/buster/apache/Dockerfile‎

Copy file name to clipboardExpand all lines: 7.2/buster/apache/Dockerfile
+2-5Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.