File tree Expand file tree Collapse file tree 4 files changed +45
-4
lines changed Expand file tree Collapse file tree 4 files changed +45
-4
lines changed Original file line number Diff line number Diff line change 33/vendor
44composer.lock
55.phpstorm.meta.php
6- phpunit.xml
6+ phpunit.xml
7+ /nbproject /private /
8+ /nbproject
Original file line number Diff line number Diff line change 1+ FROM php:7.1
2+
3+ RUN apt-get update && apt-get install -y libfreetype6-dev \
4+ libjpeg62-turbo-dev \
5+ libmcrypt-dev \
6+ libpng-dev \
7+ libpq-dev \
8+ git \
9+ zip \
10+ && docker-php-ext-install zip \
11+ && docker-php-ext-install pdo bcmath \
12+ && docker-php-ext-install -j$(nproc) iconv mcrypt \
13+ && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
14+ && docker-php-ext-install -j$(nproc) gd
15+ # Install xdebug
16+ RUN pecl install xdebug && docker-php-ext-enable xdebug
17+
18+ RUN apt-get install -y libssl-dev
19+ # PHP Composer
20+ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
21+
22+
23+ # COPY . /var/www/html
24+ WORKDIR /var/www/html
Original file line number Diff line number Diff line change 11{
2- "name" : " vladimir-yuldashev /laravel-queue-rabbitmq" ,
2+ "name" : " filkhedma /laravel-queue-rabbitmq" ,
33 "description" : " RabbitMQ driver for Laravel Queue" ,
44 "license" : " MIT" ,
55 "authors" : [
66 {
7- "name" : " Vladimir Yuldashev " ,
8- "email" : " misterio92@gmail .com"
7+ "name" : " Mostafa Saeed " ,
8+ "email" : " msaeed@filkhedma .com"
99 }
1010 ],
1111 "require" : {
Original file line number Diff line number Diff line change 1+ version : ' 3.2'
2+ services :
3+ # --------------------------------------------------------------------------
4+ # PHP Service
5+ # --------------------------------------------------------------------------
6+ rabbitmq_php :
7+ container_name : rabbitmq_php
8+ build :
9+ context : .
10+ dockerfile : ./Dockerfile
11+ volumes :
12+ - type : bind
13+ source : .
14+ target : /var/www/html
15+ command : composer install
You can’t perform that action at this time.
0 commit comments