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

9 lines
124 B
Bash
Raw 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-29 14:57:02 +02:00
export $(grep -v '^#' .env | xargs)
2023-01-04 14:08:00 +01:00
exec "$@"