strapi / strapi-docker

Install and run your first Strapi project using Docker
https://strapi.io
MIT License
1.16k stars 447 forks source link

Possibility to run custom scripts on termination/restart #328

Open paramsiddharth opened 2 years ago

paramsiddharth commented 2 years ago

Possibility to run custom scripts on termination/restart

Similar to #102, I wish to have a function run every time the development server is restarted or stopped. Is there currently a way to do that? If yes, please mention.

I understand that config/bootstrap.js can export a function to run at startup. I wish to know if there's something that runs on termination/restart too.

Edit (Still not resolved)

I realize that we have lifecycle functions register, bootstrap, and destroy. I have been able to successfully override the bootstrap function by exporting a function via config/bootstrap.js, but failed to do the same for destroy by exporting a function from config/destroy.js. Where am I going wrong?