| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Customising Docker Images with Builder
FROM php:7.2-apache
version: "3"
services:
www:
build: .
ports:
- "8080:80"
volumes:
- ./src:/var/www/html/
networks:
- default
RUN pecl install xdebug-2.6.0
RUN docker-php-ext-enable xdebug
RUN pecl install redis-4.0.1
RUN docker-php-ext-enable redis
ENV REDIS_HOST redis
| Back | FazBrowse Home | New Git URL |