Skip to content

Commit

Permalink
⬆️
Browse files Browse the repository at this point in the history
  • Loading branch information
bscheshirwork committed Oct 18, 2019
1 parent 151438c commit 2d847d9
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ Supported tags and respective `Dockerfile` links

## for yii2

- `7.3.8-fpm-4yii2`, `fpm-4yii2` ([yii2/Dockerfile](./yii2/Dockerfile))
- `7.3.8-fpm-4yii2-xdebug`, `fpm-4yii2-xdebug` ([yii2-xdebug/Dockerfile](./yii2-xdebug/Dockerfile))
- `7.3.10-fpm-4yii2`, `fpm-4yii2` ([yii2/Dockerfile](./yii2/Dockerfile))
- `7.3.10-fpm-4yii2-xdebug`, `fpm-4yii2-xdebug` ([yii2-xdebug/Dockerfile](./yii2-xdebug/Dockerfile))
>note: based on `fpm-alpine3.10` used `OpenSSL` instead `LibreSSL`
>note: OpenSSL 1.1.0 breaks backwards compatibility with old encrypted keys. Errors like
> "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?)"
> Use sha256 encrypted keys.
- `7.3.8-fpm-alpine-4yii2`, `fpm-alpine-4yii2` ([yii2-alpine/Dockerfile](./yii2-alpine/Dockerfile))
- `7.3.8-fpm-alpine-4yii2-xdebug`, `fpm-alpine-4yii2-xdebug` ([yii2-alpine-xdebug/Dockerfile](./yii2-alpine-xdebug/Dockerfile))
- `7.3.8-fpm-alpine-4yii2-supervisor`, `fpm-alpine-4yii2-supervisor` ([yii2-alpine-supervisor/Dockerfile](./yii2-alpine-supervisor/Dockerfile))
- `7.3.8-fpm-alpine-4yii2-supervisor-xdebug`, `fpm-alpine-4yii2-supervisor-xdebug` ([yii2-alpine-supervisor-xdebug/Dockerfile](./yii2-alpine-supervisor-xdebug/Dockerfile))
- `7.3.10-fpm-alpine-4yii2`, `fpm-alpine-4yii2` ([yii2-alpine/Dockerfile](./yii2-alpine/Dockerfile))
- `7.3.10-fpm-alpine-4yii2-xdebug`, `fpm-alpine-4yii2-xdebug` ([yii2-alpine-xdebug/Dockerfile](./yii2-alpine-xdebug/Dockerfile))
- `7.3.10-fpm-alpine-4yii2-supervisor`, `fpm-alpine-4yii2-supervisor` ([yii2-alpine-supervisor/Dockerfile](./yii2-alpine-supervisor/Dockerfile))
- `7.3.10-fpm-alpine-4yii2-supervisor-xdebug`, `fpm-alpine-4yii2-supervisor-xdebug` ([yii2-alpine-supervisor-xdebug/Dockerfile](./yii2-alpine-supervisor-xdebug/Dockerfile))

FROM `php:fpm`

Expand All @@ -32,12 +32,12 @@ added `Xdebug 2.8.0beta2`

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

`docker pull bscheshir/php:7.3.8-fpm-4yii2-xdebug`
`docker pull bscheshir/php:7.3.10-fpm-4yii2-xdebug`

## for zts

- `7.3.8-zts`, `zts` ([zts/Dockerfile](./zts/Dockerfile))
- `7.3.8-zts-xdebug`, `zts-xdebug` ([zts-xdebug/Dockerfile](./zts-xdebug/Dockerfile))
- `7.3.10-zts`, `zts` ([zts/Dockerfile](./zts/Dockerfile))
- `7.3.10-zts-xdebug`, `zts-xdebug` ([zts-xdebug/Dockerfile](./zts-xdebug/Dockerfile))


FROM `php:zts`
Expand All @@ -57,7 +57,7 @@ tag: `{sourceref}-zts-xdebug`
version: '2'
services:
php:
image: bscheshir/php:7.3.8-fpm-alpine-4yii2-xdebug
image: bscheshir/php:7.3.10-fpm-alpine-4yii2-xdebug
restart: always
volumes:
- ../php-code:/var/www/html #php-code
Expand All @@ -84,7 +84,7 @@ services:
environment:
TZ: Europe/Moscow
mysql:
image: mysql:8.0.17
image: mysql:8.0.18
entrypoint: ['/entrypoint.sh', '--default-authentication-plugin=mysql_native_password'] # https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin
restart: always
expose:
Expand Down Expand Up @@ -145,7 +145,7 @@ crontab (full path needed)
version: '2'
services:
php-supervisor: # for workers
image: bscheshir/php:7.3.8-fpm-alpine-4yii2-supervisor-xdebug
image: bscheshir/php:7.3.10-fpm-alpine-4yii2-supervisor-xdebug
restart: always
volumes:
- ../php-code:/var/www/html #php-code
Expand All @@ -165,7 +165,7 @@ services:
version: '2'
services:
php:
image: bscheshir/php:7.3.8-zts
image: bscheshir/php:7.3.10-zts
restart: always
hostname: phphost
working_dir: /multispider
Expand Down Expand Up @@ -199,20 +199,20 @@ git pull
For example `bscheshir/php:fpm-alpine-4yii2-xdebug` - this image will be used in [docker-codeception-yii2](https://github.com/bscheshirwork/docker-codeception-yii2)
and another `alpine` images
```sh
docker build -t bscheshir/php:7.3.8-fpm-alpine-4yii2-xdebug -t bscheshir/php:fpm-alpine-4yii2-xdebug --pull -- ./yii2-alpine-xdebug
docker push bscheshir/php:7.3.8-fpm-alpine-4yii2-xdebug
docker build -t bscheshir/php:7.3.10-fpm-alpine-4yii2-xdebug -t bscheshir/php:fpm-alpine-4yii2-xdebug --pull -- ./yii2-alpine-xdebug
docker push bscheshir/php:7.3.10-fpm-alpine-4yii2-xdebug
docker push bscheshir/php:fpm-alpine-4yii2-xdebug

docker build -t bscheshir/php:7.3.8-fpm-alpine-4yii2 -t bscheshir/php:fpm-alpine-4yii2 --pull -- ./yii2-alpine
docker push bscheshir/php:7.3.8-fpm-alpine-4yii2
docker build -t bscheshir/php:7.3.10-fpm-alpine-4yii2 -t bscheshir/php:fpm-alpine-4yii2 --pull -- ./yii2-alpine
docker push bscheshir/php:7.3.10-fpm-alpine-4yii2
docker push bscheshir/php:fpm-alpine-4yii2

docker build -t bscheshir/php:7.3.8-fpm-alpine-4yii2-supervisor-xdebug -t bscheshir/php:fpm-alpine-4yii2-supervisor-xdebug --pull -- ./yii2-alpine-supervisor-xdebug
docker push bscheshir/php:7.3.8-fpm-alpine-4yii2-supervisor-xdebug
docker build -t bscheshir/php:7.3.10-fpm-alpine-4yii2-supervisor-xdebug -t bscheshir/php:fpm-alpine-4yii2-supervisor-xdebug --pull -- ./yii2-alpine-supervisor-xdebug
docker push bscheshir/php:7.3.10-fpm-alpine-4yii2-supervisor-xdebug
docker push bscheshir/php:fpm-alpine-4yii2-supervisor-xdebug

docker build -t bscheshir/php:7.3.8-fpm-alpine-4yii2-supervisor -t bscheshir/php:fpm-alpine-4yii2-supervisor --pull -- ./yii2-alpine-supervisor
docker push bscheshir/php:7.3.8-fpm-alpine-4yii2-supervisor
docker build -t bscheshir/php:7.3.10-fpm-alpine-4yii2-supervisor -t bscheshir/php:fpm-alpine-4yii2-supervisor --pull -- ./yii2-alpine-supervisor
docker push bscheshir/php:7.3.10-fpm-alpine-4yii2-supervisor
docker push bscheshir/php:fpm-alpine-4yii2-supervisor
```

Expand Down

0 comments on commit 2d847d9

Please sign in to comment.