jgraph / docker-drawio

Dockerized draw.io based on whichever is the most secure image at the time.
GNU General Public License v3.0
1.49k stars 361 forks source link

Fix environment variable for certificate COUNTRY_CODE #76

Closed unusedcow closed 2 years ago

unusedcow commented 2 years ago

Correction for the environment variable mapping in the docker-entrypoint.sh file:

In order to match the documentation and docker-compose.yml, the current line: COUNTRY_CODE=${COUNTRY:-'FR'}

Should instead be: COUNTRY_CODE=${COUNTRY_CODE:-'FR'}

unusedcow commented 2 years ago

Another related correction for environment variable mismatch on "ORGANISATION_UNIT":

m-mohamedin commented 2 years ago

Fixed. Thanks for the report