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

#!/usr/bin/env bash
if [ ! -f .env ]; then
cp /data/.env.template .env
fi
set -a
source .env
set +a
exec "$@"