Skip to content

Commit 5bdb452

Browse files
committed
Fixed missing default SSL cert
1 parent a16dc56 commit 5bdb452

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
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.1] - 2020-04-30
12+
13+
### Fixed
14+
- Reverted old SSL cert, it needs to exist as default cert until new certs are generated.
15+
1116
## [31.0.0] - 2020-04-30
1217

1318
### Added

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ 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-0`](https://github.com/markshust/docker-magento/tree/master/images/nginx/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)
8788
- [markoshust/magento-php (Docker Hub)](https://hub.docker.com/r/markoshust/magento-php/)
8889
- 7.3
8990
- [`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.0
4+
# Version 31.0.1
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.0
4+
# Version 31.0.1
55

66
version: "3"
77

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

images/nginx/1.18/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ RUN apt-get update && apt-get install -y \
1111
libnss3-tools \
1212
openssl
1313

14+
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
16+
1417
RUN ( \
1518
cd /usr/local/bin/ \
1619
&& curl -L https://github.com/FiloSottile/mkcert/releases/download/v1.4.1/mkcert-v1.4.1-linux-amd64 -o mkcert \

0 commit comments

Comments
 (0)