Skip to content

Commit a077e39

Browse files
committed
Upgrade to PHP 7.1.24
Use new base Docker image with PHP 7.1.24
1 parent 98ca3b1 commit a077e39

File tree

8 files changed

+114
-7
lines changed

8 files changed

+114
-7
lines changed

Dockerfile.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alexcheng/apache2-php7:{{phpVersion}}
1+
FROM quay.io/alexcheng1982/apache2-php7:{{phpVersion}}
22

33
LABEL maintainer="alexcheng1982@gmail.com"
44
LABEL version="{{magento2Version}}"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
This repo converts the [long installation guide](http://devdocs.magento.com/guides/v1.0/install-gde/bk-install-guide.html) of Magento 2 into simple Docker image to use. It uses the same convention as my [Docker image for Magento 1.x](https://github.com/alexcheng1982/docker-magento).
88

9-
For documentation, please refer to the Magento 1.x [repo](https://github.com/alexcheng1982/docker-magento). These two Docker images follow the same instructions.
9+
This docker image is based on my [docker-apache2-php7](https://github.com/alexcheng1982/docker-apache2-php7) image for Apache 2 and PHP 7.
1010

1111
__Note__ This docker image uses the *Contributing developer* profile to install Magento, so it has limitations. See more details [here](http://devdocs.magento.com/guides/v2.0/install-gde/bk-install-guide.html).
1212

13-
**Please note: this Docker image is for development and testing only, not for production use. Setting up a Magento 2 production server requires more configurations. Please refer to [official documentations](http://devdocs.magento.com/guides/v2.2/config-guide/deployment/).**
13+
**Please note: this Docker image is for development and testing only, not ready for production use. Setting up a Magento 2 production server requires more configurations. Please refer to [official documentations](http://devdocs.magento.com/guides/v2.2/config-guide/deployment/).**
1414

1515
## Magento 2 installation types
1616

developer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alexcheng/apache2-php7:7.1.11
1+
FROM quay.io/alexcheng1982/apache2-php7:7.1.24
22

33
LABEL maintainer="alexcheng1982@gmail.com"
44
LABEL version="2.2.6"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.0'
22
services:
33
web:
4-
build: .
4+
build: ./developer
55
ports:
66
- "80:80"
77
links:

docker-compose-integrator-dev.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: '3.0'
2+
services:
3+
web:
4+
build: ./integrator
5+
ports:
6+
- "80:80"
7+
links:
8+
- db
9+
env_file:
10+
- env
11+
db:
12+
image: mysql:5.6.23
13+
volumes:
14+
- db-data:/var/lib/mysql/data
15+
env_file:
16+
- env
17+
phpmyadmin:
18+
image: phpmyadmin/phpmyadmin
19+
container_name: phpmyadmin
20+
ports:
21+
- "8580:80"
22+
links:
23+
- db
24+
volumes:
25+
db-data:

integrator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alexcheng/apache2-php7:7.1.11
1+
FROM quay.io/alexcheng1982/apache2-php7:7.1.24
22

33
LABEL maintainer="alexcheng1982@gmail.com"
44
LABEL version="2.2.6"

package-lock.json

Lines changed: 82 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

update.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const fs = Promise.promisifyAll(require("fs"));
55
const path = require("path");
66

77
const commonOptions = {
8-
phpVersion: '7.1.11',
8+
phpVersion: '7.1.24',
99
magento2Version: '2.2.6',
1010
};
1111

0 commit comments

Comments
 (0)