-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
61 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Multiarch build | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
schedule: | ||
# Every month's 2nd on 5:30 | ||
- cron: '30 7 2 * *' | ||
|
||
jobs: | ||
multiarch-build: | ||
name: Build images | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install qemu dependency | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y qemu-user-static | ||
- name: Buildah Action | ||
id: build-image | ||
uses: redhat-actions/buildah-build@v2 | ||
with: | ||
image: php-toolassisted | ||
tags: latest | ||
platforms: linux/amd64, linux/arm64 | ||
containerfiles: Containerfile | ||
|
||
- name: Push To quay.io | ||
id: push-to-quay | ||
uses: redhat-actions/push-to-registry@v2 | ||
if: github.ref == 'refs/heads/master' | ||
with: | ||
image: ${{ steps.build-image.outputs.image }} | ||
tags: ${{ steps.build-image.outputs.tags }} | ||
registry: quay.io/wavesoftware | ||
username: ${{ secrets.QUAY_USER }} | ||
password: ${{ secrets.QUAY_PASSWORD }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
WaveSoftware PHP - Tool Assisted | ||
================================ | ||
# WaveSoftware PHP - Tool Assisted | ||
|
||
[![Docker Repository on Quay](https://quay.io/repository/wavesoftware/php-toolassisted/status "Docker Repository on Quay")](https://quay.io/repository/wavesoftware/php-toolassisted) | ||
[![Multiarch build](https://github.com/wavesoftware/container-php-toolassisted/actions/workflows/multiarch-build.yaml/badge.svg)](https://github.com/wavesoftware/container-php-toolassisted/actions/workflows/multiarch-build.yaml) | ||
|
||
A PHP fpm distribution used by WaveSoftware PHP hosts with additional command line tools: | ||
|
||
* ImageMagick | ||
* FFMpeg | ||
* LibreOffice | ||
|
||
### Pull: | ||
|
||
```shell | ||
$ docker pull quay.io/wavesoftware/php-toolassisted | ||
``` |