mirror of
https://github.com/linuxserver/docker-swag.git
synced 2024-10-01 01:35:49 -04:00
8 lines
257 B
Plaintext
8 lines
257 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
# check to make sure that the required variables are set
|
|
if [[ -z "${URL}" ]]; then
|
|
echo "Please pass your URL as an environment variable in your docker run command. See docker info for more details."
|
|
sleep infinity
|
|
fi
|