mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-23 17:47:54 -05:00
16 lines
250 B
Bash
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
|