it is enabled, and the entrypoint script is: ```#!...
# announcements
c
it is enabled, and the entrypoint script is:
Copy code
#!/bin/sh

# See: <https://unix.stackexchange.com/a/453053> - fixes inflated hard link count
touch /etc/crontab /etc/cron.*/*

service cron start

# Migrate dagster Postgres database
dagster instance migrate

# Add all schedules
dagster schedule up

# Restart previously running schedules
dagster schedule restart --restart-all-running 

dagit -h 0.0.0.0 -p 3000