Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs #78

Merged
merged 5 commits into from
Dec 30, 2023
Merged

Docs #78

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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