docker-carto-jw/sync_tables_trigger.sh
2023-05-11 13:16:31 +08:00

9 lines
112 B
Bash

#!/bin/bash
while :
do
sleep $SYNC_TABLES_INTERVAL
cd /cartodb
bundle exec rake cartodb:sync_tables[true]
done