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

feat: add php & wordpress image #4

Merged
merged 2 commits into from
Nov 7, 2023
Merged
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
30 changes: 30 additions & 0 deletions .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,36 @@ jobs:
short: 3
full: 3.17

- name: php
path: php/7.4-apache
version:
short: 7-apache
full: 7.4-apache

- name: php
path: php/7.4-fpm
version:
short: 7-fpm
full: 7.4-fpm

- name: php
path: php/8.2-fpm
version:
short: 8-fpm
full: 8.2-fpm

- name: wordpress
path: wordpress/php7.4
version:
short: 6-php7
full: 6.1-php7.4-fpm

- name: wordpress
path: wordpress/php8.2
version:
short: 6
full: 6.2-php8.2-fpm

permissions:
contents: read
packages: write
Expand Down
2 changes: 1 addition & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM docker.io/library/alpine:3.17

LABEL org.opencontainers.image.description="Minimal Docker image based on Alpine Linux with a complete package index and only 5 MB in size!"
LABEL org.opencontainers.image.description "Minimal Docker image based on Alpine Linux with a complete package index and only 5 MB in size!"

ARG APK_TESTING
RUN set -ex; \
Expand Down
1 change: 1 addition & 0 deletions php/7.4-apache/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
3 changes: 3 additions & 0 deletions php/7.4-apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM docker.io/php:7.4-apache

LABEL org.opencontainers.image.description "The unofficial docker container image for php apache 7 packaged by Alwatr."
1 change: 1 addition & 0 deletions php/7.4-fpm/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
3 changes: 3 additions & 0 deletions php/7.4-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM docker.io/library/php:7.4-fpm

LABEL org.opencontainers.image.description "The unofficial docker container image for php fpm 7 packaged by Alwatr."
1 change: 1 addition & 0 deletions php/8.2-fpm/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
3 changes: 3 additions & 0 deletions php/8.2-fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM docker.io/library/php:8.2-fpm

LABEL org.opencontainers.image.description "The unofficial docker container image for php fpm 8 packaged by Alwatr."
1 change: 1 addition & 0 deletions php/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# PHP Container Mirror
1 change: 1 addition & 0 deletions wordpress/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Wordpress Container Mirror
1 change: 1 addition & 0 deletions wordpress/php7.4/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
3 changes: 3 additions & 0 deletions wordpress/php7.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM docker.io/wordpress:6.1-php7.4-fpm

LABEL org.opencontainers.image.description "The unofficial docker container image for wordpress 6 with php 7 packaged by Alwatr."
1 change: 1 addition & 0 deletions wordpress/php8.2/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
3 changes: 3 additions & 0 deletions wordpress/php8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM docker.io/wordpress:6.2-php8.2-fpm

LABEL org.opencontainers.image.description "The unofficial docker container image for wordpress 6 with php 8 packaged by Alwatr."