0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-04 02:01:58 -05:00
ghost/.docker/development.entrypoint.sh
Chris Raible 12f14ae891
Removed knex-migrator init from Docker entrypoint (#22222)
no issue

- This fails when running the Ghost container alone (i.e. for unit
tests) since there is no database available.
- The database will be initialized when running `yarn dev` for the first
time anyhow, so this isn't really necessary here.
2025-02-19 00:14:39 +00:00

7 lines
No EOL
119 B
Bash
Executable file

#!/bin/bash
# Adjust local configuration
node /home/ghost/.github/scripts/setup-docker.js
# Execute the CMD
exec "$@"