Skip to content

Commit 939364b

Browse files
committed
Fixed typo in last build image
1 parent 5bdb452 commit 939364b

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88

99
N/A
1010

11+
## [31.0.2] - 2020-04-30
12+
13+
### Fixed
14+
- Fixed typo in last build image, new version is `magento-nginx:1.18-2`.
15+
1116
## [31.0.1] - 2020-04-30
1217

1318
### Fixed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,9 @@ View Dockerfiles:
8383

8484
- [markoshust/magento-nginx (Docker Hub)](https://hub.docker.com/r/markoshust/magento-nginx/)
8585
- 1.18
86-
- [`latest`, `1.18`, `1.18-1`](https://github.com/markshust/docker-magento/tree/master/images/nginx/1.18)
87-
- [`1.18`, `1.18-0`](https://github.com/markshust/docker-magento/tree/31.0.0/images/nginx/1.18)
86+
- [`latest`, `1.18`, `1.18-2`](https://github.com/markshust/docker-magento/tree/master/images/nginx/1.18)
87+
- [`1.18-1`](https://github.com/markshust/docker-magento/tree/31.0.1/images/nginx/1.18)
88+
- [`1.18-0`](https://github.com/markshust/docker-magento/tree/31.0.0/images/nginx/1.18)
8889
- [markoshust/magento-php (Docker Hub)](https://hub.docker.com/r/markoshust/magento-php/)
8990
- 7.3
9091
- [`latest`, `7.3-fpm`, `7.3-fpm-6`](https://github.com/markshust/docker-magento/tree/master/images/php/7.3)

compose/docker-compose.dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Mark Shust's Docker Configuration for Magento
22
# (https://github.com/markshust/docker-magento)
33
#
4-
# Version 31.0.1
4+
# Version 31.0.2
55

66
version: "3"
77

compose/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Mark Shust's Docker Configuration for Magento
22
# (https://github.com/markshust/docker-magento)
33
#
4-
# Version 31.0.1
4+
# Version 31.0.2
55

66
version: "3"
77

88
services:
99
app:
10-
image: markoshust/magento-nginx:1.18-1
10+
image: markoshust/magento-nginx:1.18-2
1111
ports:
1212
- "80:8000"
1313
- "443:8443"

images/nginx/1.18/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \
1212
openssl
1313

1414
RUN mkdir /etc/nginx/certs \
15-
&& echo -e "\n\n\n\n\n\n\n" | openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/nginx/certs/nginx.key -out /etc/nginx/certs/nginx.cr
15+
&& echo -e "\n\n\n\n\n\n\n" | openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/nginx/certs/nginx.key -out /etc/nginx/certs/nginx.crt
1616

1717
RUN ( \
1818
cd /usr/local/bin/ \

0 commit comments

Comments
 (0)