https://dagster.io/ logo
c

Chris Roth

04/21/2020, 3:17 PM
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