Skip to content

Commit 8356cae

Browse files
author
Alessandro Arici
committed
Release 1.11.0
1 parent 436ba2f commit 8356cae

File tree

3 files changed

+6
-29
lines changed

3 files changed

+6
-29
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Next version
1+
# 1.11.0
22
+ Upgrade dependencies
33
+ Fix Continuous integrations services
44

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IMAGE_NAME=sineverba/php74xc
22
CONTAINER_NAME=php74xc
3-
APP_VERSION=1.10.0-dev
3+
APP_VERSION=1.11.0-dev
44
COMPOSER_VERSION=1.10.27
55
XDEBUG_VERSION=3.1.6
66
MCRYPT_VERSION=1.0.7

README.md

Lines changed: 4 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Do you use it? **Star it!**
2222
| Github / Docker Image tag | PHP Version | Composer version | XDebug | Architectures |
2323
| ------------------------- | ----------- | ---------------- | ------ | ------------- |
2424
| latest | 7.4.33 | 1.10.27 | 3.1.6 | linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 |
25+
| 1.11.0 | 7.4.33 | 1.10.27 | 3.1.6 | linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 |
2526
| 1.10.0 | 7.4.33 | 1.10.27 | 3.1.5 | linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 |
2627
| 1.9.0 | 7.4.33 | 1.10.26 | 3.1.5 | linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 |
2728
| 1.8.0 | 7.4.33 | 1.10.26 | 3.1.5 | linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 |
@@ -124,34 +125,10 @@ services:
124125
``` bash
125126
$ cd ~
126127
$ nano .bashrc
127-
$ alias php74='docker run -it -w /data -v ${PWD}:/data --entrypoint php --rm sineverba/php74xc:latest'
128-
$ alias composer74='docker run -it -w /data -v ${PWD}:/data --entrypoint "/usr/bin/composer" --rm sineverba/php74xc:latest'
128+
$ alias php74='docker run -it -w /data -v ${PWD}:/data --entrypoint php --rm sineverba/php74xc:1.11.0'
129+
$ alias composer74='docker run -it -w /data -v ${PWD}:/data --entrypoint "/usr/bin/composer" --rm sineverba/php74xc:1.11.0'
129130
```
130131

131132
### Issues with memory limit (on composer)
132133

133-
`$ php -d memory_limit=-1 /usr/bin/composer require [...]`
134-
135-
#### Build and test image locally
136-
137-
```shell
138-
$ make build
139-
$ make test
140-
$ make destroy
141-
```
142-
143-
+ Check images list
144-
145-
`$ docker image ls`
146-
147-
+ Clone the project
148-
149-
`$ git clone git@github.com:sineverba/php74xc.git`
150-
151-
+ Run from same folder
152-
153-
`$ docker build --tag php74xc:x.y.z .`
154-
155-
+ Check new image (php74xc:x.y.z)
156-
157-
`$ docker image ls`
134+
`$ php -d memory_limit=-1 /usr/bin/composer require [...]`

0 commit comments

Comments
 (0)