You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kmftools/WeatherApp/start.sh

12 lines
254 B

#!/bin/bash
# Start de cron-service correct
service cron start
# Start de Flask-app met Gunicorn (betere productie-optie)
gunicorn --bind 0.0.0.0:5000 main:app --workers 4 &
# Houd de container draaiende en log cron-uitvoer
tail -f /var/log/cron.log