fix: add new supported database images
This commit is contained in:
@@ -120,6 +120,7 @@ class ServiceDatabase extends BaseModel
|
|||||||
{
|
{
|
||||||
return str($this->databaseType())->contains('mysql') ||
|
return str($this->databaseType())->contains('mysql') ||
|
||||||
str($this->databaseType())->contains('postgres') ||
|
str($this->databaseType())->contains('postgres') ||
|
||||||
|
str($this->databaseType())->contains('postgis') ||
|
||||||
str($this->databaseType())->contains('mariadb') ||
|
str($this->databaseType())->contains('mariadb') ||
|
||||||
str($this->databaseType())->contains('mongodb');
|
str($this->databaseType())->contains('mongodb');
|
||||||
}
|
}
|
||||||
|
@@ -20,12 +20,16 @@ const RESTART_MODE = 'unless-stopped';
|
|||||||
const DATABASE_DOCKER_IMAGES = [
|
const DATABASE_DOCKER_IMAGES = [
|
||||||
'bitnami/mariadb',
|
'bitnami/mariadb',
|
||||||
'bitnami/mongodb',
|
'bitnami/mongodb',
|
||||||
'bitnami/mysql',
|
|
||||||
'bitnami/postgresql',
|
|
||||||
'bitnami/redis',
|
'bitnami/redis',
|
||||||
'mysql',
|
'mysql',
|
||||||
|
'bitnami/mysql',
|
||||||
|
'mysql/mysql-server',
|
||||||
'mariadb',
|
'mariadb',
|
||||||
|
'postgis/postgis',
|
||||||
'postgres',
|
'postgres',
|
||||||
|
'bitnami/postgresql',
|
||||||
|
'supabase/postgres',
|
||||||
|
'elestio/postgres',
|
||||||
'mongo',
|
'mongo',
|
||||||
'redis',
|
'redis',
|
||||||
'memcached',
|
'memcached',
|
||||||
@@ -33,8 +37,6 @@ const DATABASE_DOCKER_IMAGES = [
|
|||||||
'neo4j',
|
'neo4j',
|
||||||
'influxdb',
|
'influxdb',
|
||||||
'clickhouse/clickhouse-server',
|
'clickhouse/clickhouse-server',
|
||||||
'supabase/postgres',
|
|
||||||
'elestio/postgres',
|
|
||||||
];
|
];
|
||||||
const SPECIFIC_SERVICES = [
|
const SPECIFIC_SERVICES = [
|
||||||
'quay.io/minio/minio',
|
'quay.io/minio/minio',
|
||||||
|
Reference in New Issue
Block a user