Skip to content

Commit

Permalink
update labels
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangut committed Oct 27, 2023
1 parent e0e7405 commit b62c0cc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 1 addition & 2 deletions templates/Dockerfile.twig
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ ARG XDEBUG_VERSION
{% endif %}

LABEL org.opencontainers.image.title="juliangut/phpdev" \
org.opencontainers.image.description="PHP/PHP-FPM/Jenkins Docker image for development/CI, based on Alpine Linux for minimal size" \
org.opencontainers.image.description="{% block description %}{% endblock %}" \
org.opencontainers.image.url="https://github.com/juliangut/docker-phpdev" \
org.opencontainers.image.source="https://github.com/juliangut/docker-phpdev/tree/master/dist/{{ variant }}/{{ version }}" \
org.opencontainers.image.revision="$VCS_REF" \
org.opencontainers.image.created="$BUILD_DATE" \
org.opencontainers.image.authors="Julián Gutiérrez ([email protected])" \
Expand Down
2 changes: 2 additions & 0 deletions templates/cli/Dockerfile.twig
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% extends "Dockerfile.twig" %}

{% block description %}PHP Docker image for development, based on Alpine Linux for minimal size{% endblock %}

{% block command %}
CMD ["php", "-a"]
{% endblock %}
2 changes: 2 additions & 0 deletions templates/fpm/Dockerfile.twig
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% extends "Dockerfile.twig" %}

{% block description %}PHP-FPM Docker image for development, based on Alpine Linux for minimal size{% endblock %}

{% block install %}
fcgi \
{% endblock %}
Expand Down
2 changes: 2 additions & 0 deletions templates/jenkins/Dockerfile.twig
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{% extends "Dockerfile.twig" %}

{% block description %}PHP Jenkins Docker image for CI, based on Alpine Linux for minimal size{% endblock %}

{% block install %}
openjdk8-jre \
openssh \
Expand Down

0 comments on commit b62c0cc

Please sign in to comment.