Skip to content

Commit

Permalink
Merge pull request #78 from FriendsOfREDAXO/schuer-docs
Browse files Browse the repository at this point in the history
Docs
  • Loading branch information
schuer authored Dec 30, 2023
2 parents 666b429 + 6728a19 commit f7d5037
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
collect:
name: Collect images from directories
runs-on: ubuntu-latest
# Map step outputs to job outputs, so that the data can be used in upcoming jobs
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idoutputs
outputs:
IMAGES: ${{ steps.images.outputs.directories }}

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
collect:
name: Collect images from directories
runs-on: ubuntu-latest
# Map step outputs to job outputs, so that the data can be used in upcoming jobs
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idoutputs
outputs:
IMAGES: ${{ steps.images.outputs.directories }}

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Publish](https://github.com/FriendsOfREDAXO/docker-redaxo/actions/workflows/publish.yml/badge.svg)](https://github.com/FriendsOfREDAXO/docker-redaxo/actions/workflows/publish.yml)

# Docker image for REDAXO

This image for [REDAXO](https://github.com/redaxo/redaxo/) CMS is developed and maintained by [Friends Of REDAXO](https://github.com/FriendsOfREDAXO).
Expand Down
2 changes: 1 addition & 1 deletion images/5-edge/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ RUN set -ex; \
pdo_mysql \
zip \
; \
# install imagick
# install imagick (currently disabled due to issues with PHP 8.2/8.3)
# https://pecl.php.net/package/imagick
# pecl install imagick-3.7.0; \
# docker-php-ext-enable imagick; \
Expand Down
2 changes: 1 addition & 1 deletion images/5-stable/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ RUN set -ex; \
pdo_mysql \
zip \
; \
# install imagick
# install imagick (currently disabled due to issues with PHP 8.2/8.3)
# https://pecl.php.net/package/imagick
# pecl install imagick-3.7.0; \
# docker-php-ext-enable imagick; \
Expand Down
2 changes: 1 addition & 1 deletion source/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ RUN set -ex; \
pdo_mysql \
zip \
; \
# install imagick
# install imagick (currently disabled due to issues with PHP 8.2/8.3)
# https://pecl.php.net/package/imagick
# pecl install imagick-3.7.0; \
# docker-php-ext-enable imagick; \
Expand Down
9 changes: 9 additions & 0 deletions source/images.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Images configuration
#
# Variants:
# `5-stable`: stable REDAXO + the oldest PHP version with active support (https://www.php.net/supported-versions.php)
# `5-edge` : latest REDAXO (even beta) + latest PHP version (even RC)
#
# How to get the sha for a package:
# `curl -Ls https://github.com/redaxo/redaxo/releases/download/5.15.1/redaxo_5.15.1.zip | shasum`

images:
- name: "5-stable"
tags:
Expand Down

0 comments on commit f7d5037

Please sign in to comment.