-
Notifications
You must be signed in to change notification settings - Fork 7
Feature alpine images #41
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
Open
symric
wants to merge
10
commits into
master
Choose a base branch
from
feature-alpine-images
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
b0ceb6f
update(Dockerfile) Updated the SHA for composer installer
symric 2d5fd05
Merge branch 'master' of github.com:symbiote/docker-project
symric 315d463
new(php) New alpine versions of php:7.1 and one with apache
symric af6ad0a
mod(php) Add `gmp` and `soap` extensions to php 7.1 alpine
4bb4871
new(php) Add php 7.3 alpine (fpm and cli)
a0708bb
update(php7.3-alpine) Push to public repository instead of private one
6b565e5
add(php:7.3) New php 7.3 images
symric c687653
update(php:7.1) xdebug added back into alpine versions
symric edf7fac
fix(http-alpine) Corrected the image repository
symric ecd583c
update(php:7.3) Re-enable xdebug
symric File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| FROM httpd:2.4.38-alpine | ||
|
|
||
| # Enable vhosts and fcgi proxy | ||
| RUN sed -ri \ | ||
| -e 's!^#(LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so)!\1!g' \ | ||
| -e 's!^#(LoadModule proxy_module modules/mod_proxy.so)!\1!g' \ | ||
| -e 's!^#(Include conf/extra/httpd-vhosts.conf)!\1!g' \ | ||
| -e '/LoadModule rewrite_module/s/^#//g' \ | ||
| -e '/LoadModule alias_module/s/^#//g' \ | ||
| -e '/LoadModule deflate_module/s/^#//g' \ | ||
| -e '/LoadModule expires_module/s/^#//g' \ | ||
| /usr/local/apache2/conf/httpd.conf | ||
|
|
||
| COPY ./vhost.conf /usr/local/apache2/conf/extra/httpd-vhosts.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| version: "3" | ||
| services: | ||
| httpd: | ||
| image: symbiote/httpd:2.4.38-alpine | ||
| build: . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| <Directory /var/www/html> | ||
| Options Indexes FollowSymLinks | ||
| AllowOverride All | ||
| Require all granted | ||
| </Directory> | ||
|
|
||
| <VirtualHost *:80> | ||
|
|
||
| DocumentRoot /var/www/html | ||
|
|
||
| LogFormat "%h %l %u %t \"%r\" %>s %b" common | ||
|
|
||
| ErrorLog /dev/stderr | ||
| CustomLog /dev/stdout common | ||
|
|
||
| <FilesMatch \.php$> | ||
| SetHandler "proxy:fcgi://php:9000" | ||
| </FilesMatch> | ||
|
|
||
| </VirtualHost> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| FROM symbiote/php-fpm:7.1-alpine | ||
|
|
||
| RUN apk add --no-cache \ | ||
| git \ | ||
| openssh \ | ||
| yarn | ||
|
|
||
| ENV COMPOSER_ALLOW_SUPERUSER 1 | ||
| ENV COMPOSER_HOME "/usr/local/composer" | ||
| ENV COMPOSER_VERSION 1.8.0 | ||
| ENV PATH "${COMPOSER_HOME}/vendor/bin:${PATH}" | ||
|
|
||
| RUN mkdir -p $COMPOSER_HOME \ | ||
| && php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ | ||
| #&& php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \ | ||
| && php composer-setup.php --install-dir /usr/bin --filename=composer \ | ||
| && php -r "unlink('composer-setup.php');" \ | ||
| #&& composer global require phing/phing && chown -R www-data ${COMPOSER_HOME} | ||
| && curl -sLO https://www.phing.info/get/phing-2.16.3.phar \ | ||
| && chmod +x phing-2.16.3.phar \ | ||
| && mv phing-2.16.3.phar /usr/local/bin/phing | ||
|
|
||
| COPY sspak.phar /usr/local/bin/sspak | ||
|
|
||
| COPY memory.ini /usr/local/etc/php/conf.d/memory.ini | ||
|
|
||
| RUN mkdir -p /var/www/.ssh && \ | ||
| chmod 700 /var/www/.ssh && \ | ||
| ssh-keyscan github.com >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan bitbucket.org >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan gitlab.com >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan gitlab.symbiote.com.au >> /var/www/.ssh/known_hosts && \ | ||
| chown -R 1000:1000 /var/www/.ssh && \ | ||
| chmod 600 /var/www/.ssh/known_hosts | ||
|
|
||
| CMD ["/bin/bash"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| version: "3" | ||
| services: | ||
| php-cli: | ||
| image: symbiote/php-cli:7.1-alpine | ||
| build: . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| memory_limit=384M |
Binary file not shown.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| FROM symbiote/php-fpm:7.3-alpine | ||
|
|
||
| RUN apk add --no-cache \ | ||
| git \ | ||
| openssh \ | ||
| yarn \ | ||
| && apk add --no-cache --virtual .build-deps \ | ||
| autoconf \ | ||
| build-base \ | ||
| g++ \ | ||
| && pecl install timecop-beta \ | ||
| && apk del .build-deps | ||
|
|
||
| ENV COMPOSER_ALLOW_SUPERUSER 1 | ||
| ENV COMPOSER_HOME "/usr/local/composer" | ||
| ENV COMPOSER_VERSION 1.8.0 | ||
| ENV PHING_VERSION 2.16.3 | ||
| ENV PATH "${COMPOSER_HOME}/vendor/bin:${PATH}" | ||
|
|
||
| RUN mkdir -p $COMPOSER_HOME \ | ||
| && php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ | ||
| #&& php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \ | ||
| && php composer-setup.php --install-dir /usr/bin --filename=composer \ | ||
| && php -r "unlink('composer-setup.php');" \ | ||
| && chown -R www-data ${COMPOSER_HOME} | ||
|
|
||
| RUN curl -Ol https://www.phing.info/get/phing-${PHING_VERSION}.phar \ | ||
| && mv phing-${PHING_VERSION}.phar /usr/local/bin/phing \ | ||
| && chmod +x /usr/local/bin/phing | ||
|
|
||
| COPY sspak.phar /usr/local/bin/sspak | ||
|
|
||
| COPY memory.ini /usr/local/etc/php/conf.d/memory.ini | ||
|
|
||
| RUN mkdir -p /var/www/.ssh && \ | ||
| chmod 700 /var/www/.ssh && \ | ||
| ssh-keyscan github.com >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan bitbucket.org >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan gitlab.com >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan gitlab.symbiote.com.au >> /var/www/.ssh/known_hosts && \ | ||
| chown -R 1000:1000 /var/www/.ssh && \ | ||
| chmod 600 /var/www/.ssh/known_hosts | ||
|
|
||
| CMD ["/bin/bash"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| version: "3" | ||
| services: | ||
| php-cli: | ||
| image: symbiote/php-cli:7.3-alpine-timecop | ||
| build: . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| memory_limit=384M |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| FROM symbiote/php-fpm:7.3-alpine | ||
|
|
||
| RUN apk add --no-cache \ | ||
| git \ | ||
| openssh \ | ||
| yarn | ||
|
|
||
| ENV COMPOSER_ALLOW_SUPERUSER 1 | ||
| ENV COMPOSER_HOME "/usr/local/composer" | ||
| ENV COMPOSER_VERSION 1.8.0 | ||
| ENV PATH "${COMPOSER_HOME}/vendor/bin:${PATH}" | ||
|
|
||
| RUN mkdir -p $COMPOSER_HOME \ | ||
| && php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ | ||
| #&& php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \ | ||
| && php composer-setup.php --install-dir /usr/bin --filename=composer \ | ||
| && php -r "unlink('composer-setup.php');" \ | ||
| && composer global require phing/phing && chown -R www-data ${COMPOSER_HOME} | ||
|
|
||
| COPY sspak.phar /usr/local/bin/sspak | ||
|
|
||
| COPY memory.ini /usr/local/etc/php/conf.d/memory.ini | ||
|
|
||
| RUN mkdir -p /var/www/.ssh && \ | ||
| chmod 700 /var/www/.ssh && \ | ||
| ssh-keyscan github.com >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan bitbucket.org >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan gitlab.com >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan gitlab.symbiote.com.au >> /var/www/.ssh/known_hosts && \ | ||
| chown -R 1000:1000 /var/www/.ssh && \ | ||
| chmod 600 /var/www/.ssh/known_hosts | ||
|
|
||
| CMD ["/bin/bash"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| version: "3" | ||
| services: | ||
| php-cli: | ||
| image: symbiote/php-cli:7.3-alpine | ||
| build: . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| memory_limit=384M |
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| FROM symbiote/php-fpm:7.3 | ||
|
|
||
| RUN apt-get update && apt-get install -y \ | ||
| git \ | ||
| && pecl install timecop-beta | ||
|
|
||
| ENV COMPOSER_ALLOW_SUPERUSER 1 | ||
| ENV COMPOSER_HOME "/usr/local/composer" | ||
| ENV COMPOSER_VERSION 1.8.0 | ||
| ENV PATH "${COMPOSER_HOME}/vendor/bin:${PATH}" | ||
|
|
||
| RUN mkdir -p $COMPOSER_HOME \ | ||
| && php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ | ||
| #&& php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \ | ||
| && php composer-setup.php --install-dir /usr/bin --filename=composer \ | ||
| && php -r "unlink('composer-setup.php');" \ | ||
| && chown -R www-data ${COMPOSER_HOME} | ||
|
|
||
| RUN curl -Ol https://www.phing.info/get/phing-${PHING_VERSION}.phar \ | ||
| && mv phing-${PHING_VERSION}.phar /usr/local/bin/phing \ | ||
| && chmod +x /usr/local/bin/phing | ||
|
|
||
| COPY sspak.phar /usr/local/bin/sspak | ||
|
|
||
| COPY memory.ini /usr/local/etc/php/conf.d/memory.ini | ||
|
|
||
| RUN mkdir -p /var/www/.ssh && \ | ||
| chmod 700 /var/www/.ssh && \ | ||
| ssh-keyscan github.com >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan bitbucket.org >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan gitlab.com >> /var/www/.ssh/known_hosts && \ | ||
| ssh-keyscan gitlab.symbiote.com.au >> /var/www/.ssh/known_hosts && \ | ||
| chown -R 1000:1000 /var/www/.ssh && \ | ||
| chmod 600 /var/www/.ssh/known_hosts | ||
|
|
||
| CMD ["/bin/bash"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| version: "3" | ||
| services: | ||
| php-fpm: | ||
| image: symbiote/php-cli:7.3 | ||
| build: . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| memory_limit=384M |
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| FROM php:7.1-fpm-alpine | ||
|
|
||
| RUN apk add --no-cache \ | ||
| bash \ | ||
| freetype-dev \ | ||
| gmp-dev \ | ||
| icu-dev \ | ||
| libxslt \ | ||
| libjpeg-turbo-dev \ | ||
| libmcrypt-dev \ | ||
| libpng-dev \ | ||
| libzip-dev \ | ||
| mysql-client \ | ||
| shadow \ | ||
| ssmtp | ||
|
|
||
| RUN usermod -u 1000 www-data | ||
|
|
||
| # Installing all Symbiote standard libraries and PHP extentions | ||
| RUN apk add --no-cache --virtual .build-deps \ | ||
| autoconf \ | ||
| build-base \ | ||
| g++ \ | ||
| libxslt-dev \ | ||
| && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ | ||
| && docker-php-ext-install \ | ||
| gd \ | ||
| gmp \ | ||
| intl \ | ||
| mysqli \ | ||
| mbstring \ | ||
| mcrypt \ | ||
| opcache \ | ||
| pdo_mysql \ | ||
| soap \ | ||
| sockets \ | ||
| xsl \ | ||
| zip \ | ||
| && pecl install redis-4.0.1 \ | ||
| && pecl install xdebug \ | ||
| && docker-php-ext-enable \ | ||
| redis \ | ||
| && apk del .build-deps | ||
|
|
||
| ENV TZ=Australia/Melbourne | ||
|
|
||
| RUN echo $'[Date]\ndate.timezone = "Australia/Melbourne"' >> /usr/local/etc/php/conf.d/timezone.ini \ | ||
| && echo "mailhub=mailhog:1025\nUseTLS=NO\nFromLineOverride=YES" > /etc/ssmtp/ssmtp.conf \ | ||
| && echo "sendmail_path = /usr/sbin/ssmtp -t" > /usr/local/etc/php/conf.d/sendmail.ini \ | ||
| && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone \ | ||
| && mkdir -p /var/log/php \ | ||
| && chown www-data /var/log/php | ||
|
|
||
| COPY php.ini /usr/local/etc/php/php.ini | ||
| COPY xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| version: "3" | ||
| services: | ||
| php-fpm: | ||
| image: symbiote/php-fpm:7.1-alpine | ||
| build: . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
|
|
||
| log_errors = On | ||
| error_log = /dev/stderr | ||
| post_max_size = 50M | ||
| upload_max_filesize = 50M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| xdebug.remote_enable=on | ||
| xdebug.remote_autostart=on | ||
| xdebug.remote_handler=dbgp | ||
| xdebug.remote_connect_back=1 | ||
| xdebug.profiler_enable_trigger=0 | ||
| xdebug.var_display_max_depth=5 | ||
| xdebug.var_display_max_children=256 | ||
| xdebug.var_display_max_data=1024 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| FROM symbiote/php-fpm:7.1-alpine | ||
|
|
||
| RUN apk add --no-cache \ | ||
| apache2 \ | ||
| apache2-proxy \ | ||
| bash \ | ||
| supervisor | ||
|
|
||
| COPY ./supervisor.conf /etc/supervisor.conf | ||
|
|
||
| # Enable vhosts and fcgi proxy | ||
| RUN sed -ri \ | ||
| -e 's!^#(LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so)!\1!g' \ | ||
| -e 's!^#(LoadModule proxy_module modules/mod_proxy.so)!\1!g' \ | ||
| -e 's!^#ServerName.*!ServerName localhost!g' \ | ||
| -e '/LoadModule rewrite_module/s/^#//g' \ | ||
| -e '/LoadModule alias_module/s/^#//g' \ | ||
| -e '/LoadModule deflate_module/s/^#//g' \ | ||
| -e '/LoadModule expires_module/s/^#//g' \ | ||
| /etc/apache2/httpd.conf | ||
|
|
||
| COPY ./vhost.conf /etc/apache2/conf.d/httpd-vhosts.conf | ||
| RUN mkdir -p /run/apache2 | ||
|
|
||
| EXPOSE 80 | ||
|
|
||
| CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor.conf"] | ||
| WORKDIR /var/www/html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| version: "3" | ||
| services: | ||
| httpd: | ||
| image: symbiote/php:7.1-httpd-alpine | ||
| build: . | ||
| ports: | ||
| - "8888:80" | ||
| volumes: | ||
| - "./phpinfo.php:/var/www/html/phpinfo.php" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Minor, this one doesn't have a version specified.