initial docker script (WIP)

This commit is contained in:
NotAShelf 2022-01-24 18:41:46 +03:00
parent 53c8203f82
commit 6d74a7f5e7
No known key found for this signature in database
GPG key ID: 2E4615E792DA9BAA

7
docker.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
if [ -f .env ]; then
# Load Environment Variables
export $(cat .env | grep -v '#' | awk '/=/ {print $1}')
echo $PORT && echo $CUSTOMURL
fi