Move the files that are copied into the Docker image, into an `fs`
folder, that reflects the folder structure of that in the image. This
means two things right away:
1. A single `COPY` instruction in `Dockerfile` is enough to copy all the
files to their places.
2. The structure of files in the repo reflects that in the Docker image.
This makes working with the files/folders and troubleshooting with them
much easier.
❗ Note: **There's actually only 3 files changed, rest are just moved.**
30 lines
805 B
Bash
30 lines
805 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
ENV_PATH="/appsmith-stacks/configuration/docker.env"
|
|
PRE_DEFINED_ENV_PATH="/opt/appsmith/templates/pre-define.env"
|
|
if [[ -f /appsmith-stacks/configuration/docker.env ]]; then
|
|
echo 'Load environment configuration'
|
|
set -o allexport
|
|
. "$ENV_PATH"
|
|
. "$PRE_DEFINED_ENV_PATH"
|
|
set +o allexport
|
|
fi
|
|
|
|
if [[ -n $APPSMITH_CUSTOM_DOMAIN ]]; then
|
|
data_path="/appsmith-stacks/data/certificate"
|
|
domain="$APPSMITH_CUSTOM_DOMAIN"
|
|
rsa_key_size=4096
|
|
|
|
certbot certonly --webroot --webroot-path="$data_path/certbot" \
|
|
--register-unsafely-without-email \
|
|
--domains $domain \
|
|
--rsa-key-size $rsa_key_size \
|
|
--agree-tos \
|
|
--force-renewal
|
|
supervisorctl restart editor
|
|
else
|
|
echo 'Custom domain not configured. Cannot enable SSL without a custom domain.' >&2
|
|
fi
|