@@ -9,13 +9,13 @@ Supported tags and respective `Dockerfile` links
9
9
10
10
## for yii2
11
11
12
- - ` 7.3.5 -fpm-4yii2 ` , ` fpm-4yii2 ` ([ yii2/Dockerfile] ( ./yii2/Dockerfile ) )
13
- - ` 7.3.5 -fpm-4yii2-xdebug ` , ` fpm-4yii2-xdebug ` ([ yii2-xdebug/Dockerfile] ( ./yii2-xdebug/Dockerfile ) )
12
+ - ` 7.3.6 -fpm-4yii2 ` , ` fpm-4yii2 ` ([ yii2/Dockerfile] ( ./yii2/Dockerfile ) )
13
+ - ` 7.3.6 -fpm-4yii2-xdebug ` , ` fpm-4yii2-xdebug ` ([ yii2-xdebug/Dockerfile] ( ./yii2-xdebug/Dockerfile ) )
14
14
> note: based on ` fpm-alpine3.8 `
15
- - ` 7.3.5 -fpm-alpine-4yii2 ` , ` fpm-alpine-4yii2 ` ([ yii2-alpine/Dockerfile] ( ./yii2-alpine/Dockerfile ) )
16
- - ` 7.3.5 -fpm-alpine-4yii2-xdebug ` , ` fpm-alpine-4yii2-xdebug ` ([ yii2-alpine-xdebug/Dockerfile] ( ./yii2-alpine-xdebug/Dockerfile ) )
17
- - ` 7.3.5 -fpm-alpine-4yii2-supervisor ` , ` fpm-alpine-4yii2-supervisor ` ([ yii2-alpine-supervisor/Dockerfile] ( ./yii2-alpine-supervisor/Dockerfile ) )
18
- - ` 7.3.5 -fpm-alpine-4yii2-supervisor-xdebug ` , ` fpm-alpine-4yii2-supervisor-xdebug ` ([ yii2-alpine-supervisor-xdebug/Dockerfile] ( ./yii2-alpine-supervisor-xdebug/Dockerfile ) )
15
+ - ` 7.3.6 -fpm-alpine-4yii2 ` , ` fpm-alpine-4yii2 ` ([ yii2-alpine/Dockerfile] ( ./yii2-alpine/Dockerfile ) )
16
+ - ` 7.3.6 -fpm-alpine-4yii2-xdebug ` , ` fpm-alpine-4yii2-xdebug ` ([ yii2-alpine-xdebug/Dockerfile] ( ./yii2-alpine-xdebug/Dockerfile ) )
17
+ - ` 7.3.6 -fpm-alpine-4yii2-supervisor ` , ` fpm-alpine-4yii2-supervisor ` ([ yii2-alpine-supervisor/Dockerfile] ( ./yii2-alpine-supervisor/Dockerfile ) )
18
+ - ` 7.3.6 -fpm-alpine-4yii2-supervisor-xdebug ` , ` fpm-alpine-4yii2-supervisor-xdebug ` ([ yii2-alpine-supervisor-xdebug/Dockerfile] ( ./yii2-alpine-supervisor-xdebug/Dockerfile ) )
19
19
20
20
FROM ` php:fpm `
21
21
@@ -29,12 +29,12 @@ added `Xdebug 2.7.2`
29
29
30
30
tag: ` {sourceref}-4yii2-xdebug `
31
31
32
- ` docker pull bscheshir/php:7.3.5 -fpm-4yii2-xdebug `
32
+ ` docker pull bscheshir/php:7.3.6 -fpm-4yii2-xdebug `
33
33
34
34
## for zts
35
35
36
- - ` 7.3.5 -zts ` , ` zts ` ([ zts/Dockerfile] ( ./zts/Dockerfile ) )
37
- - ` 7.3.5 -zts-xdebug ` , ` zts-xdebug ` ([ zts-xdebug/Dockerfile] ( ./zts-xdebug/Dockerfile ) )
36
+ - ` 7.3.6 -zts ` , ` zts ` ([ zts/Dockerfile] ( ./zts/Dockerfile ) )
37
+ - ` 7.3.6 -zts-xdebug ` , ` zts-xdebug ` ([ zts-xdebug/Dockerfile] ( ./zts-xdebug/Dockerfile ) )
38
38
39
39
40
40
FROM ` php:zts `
@@ -54,7 +54,7 @@ tag: `{sourceref}-zts-xdebug`
54
54
version : ' 2'
55
55
services :
56
56
php :
57
- image : bscheshir/php:7.3.5 -fpm-alpine-4yii2-xdebug
57
+ image : bscheshir/php:7.3.6 -fpm-alpine-4yii2-xdebug
58
58
restart : always
59
59
volumes :
60
60
- ../php-code:/var/www/html # php-code
@@ -66,7 +66,7 @@ services:
66
66
XDEBUG_CONFIG : " remote_host=${DEV_REMOTE_HOST} remote_port=${DEV_REMOTE_PORT} var_display_max_data=1024 var_display_max_depth=5"
67
67
PHP_IDE_CONFIG : " serverName=${DEV_SERVER_NAME}"
68
68
nginx :
69
- image : nginx:1.15.12 -alpine
69
+ image : nginx:1.17.0 -alpine
70
70
restart : always
71
71
ports :
72
72
- " 8080:8080"
@@ -142,7 +142,7 @@ crontab (full path needed)
142
142
version: '2'
143
143
services:
144
144
php-supervisor: # for workers
145
- image: bscheshir/php:7.3.5 -fpm-alpine-4yii2-supervisor-xdebug
145
+ image: bscheshir/php:7.3.6 -fpm-alpine-4yii2-supervisor-xdebug
146
146
restart: always
147
147
volumes:
148
148
- ../php-code:/var/www/html #php-code
@@ -162,7 +162,7 @@ services:
162
162
version: '2'
163
163
services:
164
164
php:
165
- image: bscheshir/php:7.3.5 -zts
165
+ image: bscheshir/php:7.3.6 -zts
166
166
restart: always
167
167
hostname: phphost
168
168
working_dir: /multispider
@@ -196,19 +196,19 @@ git pull
196
196
For example ` bscheshir/php:fpm-alpine-4yii2-xdebug ` - this image will be used in [ docker-codeception-yii2] ( https://github.com/bscheshirwork/docker-codeception-yii2 )
197
197
and another ` alpine ` images
198
198
``` sh
199
- docker build -t bscheshir/php:7.3.5 -fpm-alpine-4yii2-xdebug -t bscheshir/php:fpm-alpine-4yii2-xdebug --pull -- ./yii2-alpine-xdebug
200
- docker push bscheshir/php:7.3.5 -fpm-alpine-4yii2-xdebug
199
+ docker build -t bscheshir/php:7.3.6 -fpm-alpine-4yii2-xdebug -t bscheshir/php:fpm-alpine-4yii2-xdebug --pull -- ./yii2-alpine-xdebug
200
+ docker push bscheshir/php:7.3.6 -fpm-alpine-4yii2-xdebug
201
201
docker push bscheshir/php:fpm-alpine-4yii2-xdebug
202
202
203
- docker build -t bscheshir/php:7.3.5 -fpm-alpine-4yii2 -t bscheshir/php:fpm-alpine-4yii2 --pull -- ./yii2-alpine
204
- docker push bscheshir/php:7.3.5 -fpm-alpine-4yii2
203
+ docker build -t bscheshir/php:7.3.6 -fpm-alpine-4yii2 -t bscheshir/php:fpm-alpine-4yii2 --pull -- ./yii2-alpine
204
+ docker push bscheshir/php:7.3.6 -fpm-alpine-4yii2
205
205
docker push bscheshir/php:fpm-alpine-4yii2
206
206
207
- docker build -t bscheshir/php:7.3.5 -fpm-alpine-4yii2-supervisor-xdebug -t bscheshir/php:fpm-alpine-4yii2-supervisor-xdebug --pull -- ./yii2-alpine-supervisor-xdebug
208
- docker push bscheshir/php:7.3.5 -fpm-alpine-4yii2-supervisor-xdebug
207
+ docker build -t bscheshir/php:7.3.6 -fpm-alpine-4yii2-supervisor-xdebug -t bscheshir/php:fpm-alpine-4yii2-supervisor-xdebug --pull -- ./yii2-alpine-supervisor-xdebug
208
+ docker push bscheshir/php:7.3.6 -fpm-alpine-4yii2-supervisor-xdebug
209
209
docker push bscheshir/php:fpm-alpine-4yii2-supervisor-xdebug
210
210
211
- docker build -t bscheshir/php:7.3.5 -fpm-alpine-4yii2-supervisor -t bscheshir/php:fpm-alpine-4yii2-supervisor --pull -- ./yii2-alpine-supervisor
212
- docker push bscheshir/php:7.3.5 -fpm-alpine-4yii2-supervisor
211
+ docker build -t bscheshir/php:7.3.6 -fpm-alpine-4yii2-supervisor -t bscheshir/php:fpm-alpine-4yii2-supervisor --pull -- ./yii2-alpine-supervisor
212
+ docker push bscheshir/php:7.3.6 -fpm-alpine-4yii2-supervisor
213
213
docker push bscheshir/php:fpm-alpine-4yii2-supervisor
214
214
```
0 commit comments