Simplify local Docker image build

This commit is contained in:
Frédéric Guillot
2019-02-27 15:13:49 -08:00
parent 4a40095122
commit 6d2b2f4a79
9 changed files with 50 additions and 52 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
#generate a new self signed SSL certificate when none is provided in the volume
# Generate a new self signed SSL certificate when none is provided in the volume
if [ ! -f /etc/nginx/ssl/kanboard.key ] || [ ! -f /etc/nginx/ssl/kanboard.crt ]
then
openssl req -x509 -nodes -newkey rsa:2048 -keyout /etc/nginx/ssl/kanboard.key -out /etc/nginx/ssl/kanboard.crt -subj "/C=GB/ST=London/L=London/O=Self Signed/OU=IT Department/CN=kanboard.org"