1
0
Fork 0
mirror of https://github.com/seejohnrun/haste-server.git synced 2024-11-01 11:31:22 +00:00
haste-server/docker-entrypoint.sh

10 lines
184 B
Bash
Raw Normal View History

#!/bin/bash
# We use this file to translate environmental variables to .env files used by the application
set -e
2022-05-27 13:04:54 +00:00
node ./docker-entrypoint.js > ./config/project-config.js
2020-08-22 20:27:05 +00:00
exec "$@"