coolify/bootstrap/helpers/constants.php

26 lines
519 B
PHP
Raw Normal View History

<?php
2023-10-19 13:32:03 +02:00
const DATABASE_TYPES = ['postgresql','redis', 'mongodb'];
const VALID_CRON_STRINGS = [
'every_minute' => '* * * * *',
'hourly' => '0 * * * *',
'daily' => '0 0 * * *',
'weekly' => '0 0 * * 0',
'monthly' => '0 0 1 * *',
'yearly' => '0 0 1 1 *',
];
2023-08-21 18:00:12 +02:00
const RESTART_MODE = 'unless-stopped';
2023-09-20 15:42:41 +02:00
const DATABASE_DOCKER_IMAGES = [
'mysql',
'mariadb',
'postgres',
'mongo',
'redis',
'memcached',
'couchdb',
'neo4j',
'influxdb',
'clickhouse/clickhouse-server'
2023-09-20 15:42:41 +02:00
];