File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ services:
203
203
- ./certs:/https:rw
204
204
command : >
205
205
sh -c "[ -e "./https/devstore.academy-localhost.pfx" ] && echo File Already exist || (
206
- rm /https/devstore.academy-localhost.pfx &&
206
+ rm -f /https/devstore.academy-localhost.pfx &&
207
207
openssl genrsa -out devstore.rsa 2048 &&
208
208
openssl req -sha256 -new -key devstore.rsa -out devstore.csr -subj '/CN=localhost' &&
209
209
openssl x509 -req -sha256 -days 365 -in devstore.csr -signkey devstore.rsa -out devstore.crt &&
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ services:
260
260
- ./certs:/https:rw
261
261
command : >
262
262
sh -c "[ -e "./https/devstore.academy-localhost.pfx" ] && echo File Already exist || (
263
- rm /https/devstore.academy-localhost.pfx &&
263
+ rm -f /https/devstore.academy-localhost.pfx &&
264
264
openssl genrsa -out devstore.rsa 2048 &&
265
265
openssl req -sha256 -new -key devstore.rsa -out devstore.csr -subj '/CN=localhost' &&
266
266
openssl x509 -req -sha256 -days 365 -in devstore.csr -signkey devstore.rsa -out devstore.crt &&
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ services:
18
18
- ./certs:/https:rw
19
19
command : >
20
20
sh -c "[ -e "./https/devstore.academy-localhost.pfx" ] && echo File Already exist || (
21
- rm /https/devstore.academy-localhost.pfx &&
21
+ rm -f /https/devstore.academy-localhost.pfx &&
22
22
openssl genrsa -out devstore.rsa 2048 &&
23
23
openssl req -sha256 -new -key devstore.rsa -out devstore.csr -subj '/CN=localhost' &&
24
24
openssl x509 -req -sha256 -days 365 -in devstore.csr -signkey devstore.rsa -out devstore.crt &&
You can’t perform that action at this time.
0 commit comments