Files
opensourcepos/docker/install-server.sh
2019-12-14 17:01:04 +00:00

16 lines
244 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.yml build
/bin/bash ./init-letsencrypt.sh