-
Notifications
You must be signed in to change notification settings - Fork 18
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
Fix memcached warning for php 5.6 #74
base: develop
Are you sure you want to change the base?
Fix memcached warning for php 5.6 #74
Conversation
|
||
RUN mkdir -p /usr/src/php/ext; \ | ||
cd /usr/src/php/ext/; \ | ||
curl -sSL -o php7.zip https://github.com/websupport-sk/pecl-memcache/archive/NON_BLOCKING_IO_php7.zip; \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the correct version of memcache that we're using? The URL itself contains php7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mbtamuli URL contains php7
because of branch
name. No official words in readme
about php5.6 support but repo contains code for both PHP version 5
and 7
though need to test once.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sagarnasit Did you get a chance to test this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sagarnasit Please add yourself also as maintainer.
php/5.6/Dockerfile
Outdated
LABEL maintainer="Abhijit Rakas <[email protected]>" | ||
LABEL org.label-schema.schema-version="1.0.0-rc1" | ||
LABEL org.label-schema.vendor="EasyEngine" | ||
LABEL org.label-schema.name="php" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need another label to differentiate between the PHP7 and PHP5.6 containers. We can use org.label-schema.version
as mentioned here - http://label-schema.org/rc1/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@abhijitrakas Similarly for PHP7 image also, we need to add the label.
…jitrakas/dockerfiles into issue/install-memcached-ext
closes #EasyEngine/site-command#274