disable appwrite for now

This commit is contained in:
Andras Bacsai 2022-05-19 15:05:56 +02:00
parent 26eacfc2c0
commit 54f7142b2b
5 changed files with 13 additions and 12 deletions

View File

@ -219,17 +219,18 @@ export const supportedServiceTypesAndVersions = [
ports: { ports: {
main: 3000 main: 3000
} }
}, // },
{ // {
name: 'appwrite', // name: 'appwrite',
fancyName: 'AppWrite', // fancyName: 'AppWrite',
baseImage: 'appwrite/appwrite', // baseImage: 'appwrite/appwrite',
images: ['appwrite/influxdb', 'appwrite/telegraf', 'mariadb:10.7', 'redis:6.0-alpine3.12'], // images: ['appwrite/influxdb', 'appwrite/telegraf', 'mariadb:10.7', 'redis:6.0-alpine3.12'],
versions: ['latest', '0.13.0'], // versions: ['latest', '0.13.0'],
recommendedVersion: '0.13.0', // recommendedVersion: '0.13.0',
ports: { // ports: {
main: 3000 // main: 3000
} // }
// }
} }
]; ];

View File

@ -263,7 +263,7 @@ export const get: RequestHandler = async (event) => {
let otherIsHttps = null; let otherIsHttps = null;
let otherIsWWW = null; let otherIsWWW = null;
if (type === 'minio') { if (type === 'minio' && service.minio.apiFqdn) {
otherDomain = getDomain(service.minio.apiFqdn); otherDomain = getDomain(service.minio.apiFqdn);
otherNakedDomain = otherDomain.replace(/^www\./, ''); otherNakedDomain = otherDomain.replace(/^www\./, '');
otherIsHttps = service.minio.apiFqdn.startsWith('https://'); otherIsHttps = service.minio.apiFqdn.startsWith('https://');