2023-08-09 15:57:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
const DATABASE_TYPES = ['postgresql'];
|
|
|
|
const VALID_CRON_STRINGS = [
|
2023-08-10 13:52:54 +00:00
|
|
|
'every_minute' => '* * * * *',
|
2023-08-09 15:57:27 +00:00
|
|
|
'hourly' => '0 * * * *',
|
|
|
|
'daily' => '0 0 * * *',
|
|
|
|
'weekly' => '0 0 * * 0',
|
|
|
|
'monthly' => '0 0 1 * *',
|
|
|
|
'yearly' => '0 0 1 1 *',
|
|
|
|
];
|
2023-08-21 16:00:12 +00:00
|
|
|
const RESTART_MODE = 'unless-stopped';
|
2023-09-20 13:42:41 +00:00
|
|
|
|
|
|
|
const DATABASE_DOCKER_IMAGES = [
|
|
|
|
'mysql',
|
|
|
|
'mariadb',
|
|
|
|
'postgres',
|
|
|
|
'mongo',
|
|
|
|
'redis',
|
|
|
|
'memcached',
|
|
|
|
'couchdb',
|
|
|
|
'neo4j',
|
|
|
|
'influxdb',
|
|
|
|
'clickhouse'
|
|
|
|
];
|