Skip to content

Commit 1e97feb

Browse files
committed
⬆️
1 parent e325dc0 commit 1e97feb

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ Supported tags and respective `Dockerfile` links
99

1010
## for yii2
1111

12-
- `7.3.11-fpm-4yii2`, `fpm-4yii2` ([yii2/Dockerfile](./yii2/Dockerfile))
13-
- `7.3.11-fpm-4yii2-xdebug`, `fpm-4yii2-xdebug` ([yii2-xdebug/Dockerfile](./yii2-xdebug/Dockerfile))
12+
- `7.3.12-fpm-4yii2`, `fpm-4yii2` ([yii2/Dockerfile](./yii2/Dockerfile))
13+
- `7.3.12-fpm-4yii2-xdebug`, `fpm-4yii2-xdebug` ([yii2-xdebug/Dockerfile](./yii2-xdebug/Dockerfile))
1414
>note: based on `fpm-alpine3.10` used `OpenSSL` instead `LibreSSL`
1515
>note: OpenSSL 1.1.0 breaks backwards compatibility with old encrypted keys. Errors like
1616
> "fopen(): Unable to set local cert chain file"; "Curl error: #58 - could not load PEM client certificate, OpenSSL error error:140AB18E:SSL routines:SSL_CTX_use_certificate:ca md too weak, (no key found, wrong pass phrase, or wrong file format?)"
1717
> Use sha256 encrypted keys.
18-
- `7.3.11-fpm-alpine-4yii2`, `fpm-alpine-4yii2` ([yii2-alpine/Dockerfile](./yii2-alpine/Dockerfile))
19-
- `7.3.11-fpm-alpine-4yii2-xdebug`, `fpm-alpine-4yii2-xdebug` ([yii2-alpine-xdebug/Dockerfile](./yii2-alpine-xdebug/Dockerfile))
20-
- `7.3.11-fpm-alpine-4yii2-supervisor`, `fpm-alpine-4yii2-supervisor` ([yii2-alpine-supervisor/Dockerfile](./yii2-alpine-supervisor/Dockerfile))
21-
- `7.3.11-fpm-alpine-4yii2-supervisor-xdebug`, `fpm-alpine-4yii2-supervisor-xdebug` ([yii2-alpine-supervisor-xdebug/Dockerfile](./yii2-alpine-supervisor-xdebug/Dockerfile))
18+
- `7.3.12-fpm-alpine-4yii2`, `fpm-alpine-4yii2` ([yii2-alpine/Dockerfile](./yii2-alpine/Dockerfile))
19+
- `7.3.12-fpm-alpine-4yii2-xdebug`, `fpm-alpine-4yii2-xdebug` ([yii2-alpine-xdebug/Dockerfile](./yii2-alpine-xdebug/Dockerfile))
20+
- `7.3.12-fpm-alpine-4yii2-supervisor`, `fpm-alpine-4yii2-supervisor` ([yii2-alpine-supervisor/Dockerfile](./yii2-alpine-supervisor/Dockerfile))
21+
- `7.3.12-fpm-alpine-4yii2-supervisor-xdebug`, `fpm-alpine-4yii2-supervisor-xdebug` ([yii2-alpine-supervisor-xdebug/Dockerfile](./yii2-alpine-supervisor-xdebug/Dockerfile))
2222

2323
FROM `php:fpm`
2424

@@ -32,12 +32,12 @@ added `Xdebug 2.8.0`
3232

3333
tag: `{sourceref}-4yii2-xdebug`
3434

35-
`docker pull bscheshir/php:7.3.11-fpm-4yii2-xdebug`
35+
`docker pull bscheshir/php:7.3.12-fpm-4yii2-xdebug`
3636

3737
## for zts
3838

39-
- `7.3.11-zts`, `zts` ([zts/Dockerfile](./zts/Dockerfile))
40-
- `7.3.11-zts-xdebug`, `zts-xdebug` ([zts-xdebug/Dockerfile](./zts-xdebug/Dockerfile))
39+
- `7.3.12-zts`, `zts` ([zts/Dockerfile](./zts/Dockerfile))
40+
- `7.3.12-zts-xdebug`, `zts-xdebug` ([zts-xdebug/Dockerfile](./zts-xdebug/Dockerfile))
4141

4242

4343
FROM `php:zts`
@@ -57,7 +57,7 @@ tag: `{sourceref}-zts-xdebug`
5757
version: '2'
5858
services:
5959
php:
60-
image: bscheshir/php:7.3.11-fpm-alpine-4yii2-xdebug
60+
image: bscheshir/php:7.3.12-fpm-alpine-4yii2-xdebug
6161
restart: always
6262
volumes:
6363
- ../php-code:/var/www/html #php-code
@@ -145,7 +145,7 @@ crontab (full path needed)
145145
version: '2'
146146
services:
147147
php-supervisor: # for workers
148-
image: bscheshir/php:7.3.11-fpm-alpine-4yii2-supervisor-xdebug
148+
image: bscheshir/php:7.3.12-fpm-alpine-4yii2-supervisor-xdebug
149149
restart: always
150150
volumes:
151151
- ../php-code:/var/www/html #php-code
@@ -165,7 +165,7 @@ services:
165165
version: '2'
166166
services:
167167
php:
168-
image: bscheshir/php:7.3.11-zts
168+
image: bscheshir/php:7.3.12-zts
169169
restart: always
170170
hostname: phphost
171171
working_dir: /multispider
@@ -199,20 +199,20 @@ git pull
199199
For example `bscheshir/php:fpm-alpine-4yii2-xdebug` - this image will be used in [docker-codeception-yii2](https://github.com/bscheshirwork/docker-codeception-yii2)
200200
and another `alpine` images
201201
```sh
202-
docker build -t bscheshir/php:7.3.11-fpm-alpine-4yii2-xdebug -t bscheshir/php:fpm-alpine-4yii2-xdebug --pull -- ./yii2-alpine-xdebug
203-
docker push bscheshir/php:7.3.11-fpm-alpine-4yii2-xdebug
202+
docker build -t bscheshir/php:7.3.12-fpm-alpine-4yii2-xdebug -t bscheshir/php:fpm-alpine-4yii2-xdebug --pull -- ./yii2-alpine-xdebug
203+
docker push bscheshir/php:7.3.12-fpm-alpine-4yii2-xdebug
204204
docker push bscheshir/php:fpm-alpine-4yii2-xdebug
205205

206-
docker build -t bscheshir/php:7.3.11-fpm-alpine-4yii2 -t bscheshir/php:fpm-alpine-4yii2 --pull -- ./yii2-alpine
207-
docker push bscheshir/php:7.3.11-fpm-alpine-4yii2
206+
docker build -t bscheshir/php:7.3.12-fpm-alpine-4yii2 -t bscheshir/php:fpm-alpine-4yii2 --pull -- ./yii2-alpine
207+
docker push bscheshir/php:7.3.12-fpm-alpine-4yii2
208208
docker push bscheshir/php:fpm-alpine-4yii2
209209

210-
docker build -t bscheshir/php:7.3.11-fpm-alpine-4yii2-supervisor-xdebug -t bscheshir/php:fpm-alpine-4yii2-supervisor-xdebug --pull -- ./yii2-alpine-supervisor-xdebug
211-
docker push bscheshir/php:7.3.11-fpm-alpine-4yii2-supervisor-xdebug
210+
docker build -t bscheshir/php:7.3.12-fpm-alpine-4yii2-supervisor-xdebug -t bscheshir/php:fpm-alpine-4yii2-supervisor-xdebug --pull -- ./yii2-alpine-supervisor-xdebug
211+
docker push bscheshir/php:7.3.12-fpm-alpine-4yii2-supervisor-xdebug
212212
docker push bscheshir/php:fpm-alpine-4yii2-supervisor-xdebug
213213

214-
docker build -t bscheshir/php:7.3.11-fpm-alpine-4yii2-supervisor -t bscheshir/php:fpm-alpine-4yii2-supervisor --pull -- ./yii2-alpine-supervisor
215-
docker push bscheshir/php:7.3.11-fpm-alpine-4yii2-supervisor
214+
docker build -t bscheshir/php:7.3.12-fpm-alpine-4yii2-supervisor -t bscheshir/php:fpm-alpine-4yii2-supervisor --pull -- ./yii2-alpine-supervisor
215+
docker push bscheshir/php:7.3.12-fpm-alpine-4yii2-supervisor
216216
docker push bscheshir/php:fpm-alpine-4yii2-supervisor
217217
```
218218

0 commit comments

Comments
 (0)