This repository has been archived on 2024-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
reactive-resume-docker/entrypoint.sh

11 lines
126 B
Bash
Raw Permalink Normal View History

2023-01-04 14:08:00 +01:00
#!/usr/bin/env bash
if [ ! -f .env ]; then
2023-04-10 18:21:08 +02:00
cp /data/.env.template .env
2023-01-04 14:08:00 +01:00
fi
2023-06-30 13:16:32 +02:00
set -a
source .env
set +a
2023-01-04 14:08:00 +01:00
exec "$@"