Files
opensourcepos/docker/install-nginx.sh
2021-02-14 10:44:22 +01:00

16 lines
250 B
Bash

#!/bin/bash
cd docker
# load local environment variables
if [ ! -e ".env" ]; then
echo "The .env (environment variables) file is missing"
exit 1
fi
. ./.env
docker-compose -f ../docker-compose.nginx.yml build
/bin/bash ./init-letsencrypt.sh