File tree Expand file tree Collapse file tree 3 files changed +19
-15
lines changed
Expand file tree Collapse file tree 3 files changed +19
-15
lines changed Original file line number Diff line number Diff line change @@ -61,10 +61,24 @@ services:
6161 image : schickling/mailcatcher
6262 restart : always
6363
64+
65+ php7console :
66+ env_file : .env
67+ build :
68+ args :
69+ - TZ=${TZ}
70+ context : ./php7console
71+ container_name : php7console
72+ image : maxlab/php7console
73+ restart : always
74+ volumes_from :
75+ - php7xdebug
76+ tty : true
77+
6478
6579 php7xdebug :
6680 env_file : .env
67- build :
81+ build :
6882 context : ./php7xdebug
6983 image : maxlab/php7xdebug
7084 restart : always
@@ -99,18 +113,7 @@ services:
99113 - 81:80
100114 - 444:443
101115
102-
103- php7console :
104- build : php7console
105- container_name : php7console
106- image : maxlab/php7console
107- env_file : .env
108- restart : always
109- volumes_from :
110- - php7xdebug
111- tty : true
112-
113-
116+
114117 elasticsearch :
115118 build : elasticsearch
116119 volumes :
Original file line number Diff line number Diff line change 1- FROM php:7.0 -fpm
1+ FROM php:7.1 -fpm
22MAINTAINER Stepanov Nikolai <nstepanovdev@gmail.com>
33
44ENV COMPOSER_HOME=/home/composer/.composer
55ENV COMPOSER_ALLOW_SUPERUSER=1
66ENV ZSH=/home/.oh-my-zsh
7+ ARG TZ
78RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
89
910RUN apt-get update
Original file line number Diff line number Diff line change 1- FROM php:7.0 -fpm
1+ FROM php:7.1 -fpm
22MAINTAINER Stepanov Nikolai <nstepanovdev@gmail.com>
33RUN apt-get update
44
You can’t perform that action at this time.
0 commit comments