commit
139aa7a0fc
@ -1861,6 +1861,215 @@
|
|||||||
defaultValue: $$generate_password
|
defaultValue: $$generate_password
|
||||||
description: ""
|
description: ""
|
||||||
showOnConfiguration: true
|
showOnConfiguration: true
|
||||||
|
- templateVersion: 1.0.0
|
||||||
|
ignore: true
|
||||||
|
defaultVersion: postgresql-v1.38.0
|
||||||
|
documentation: https://umami.is/docs/getting-started
|
||||||
|
type: umami
|
||||||
|
name: Umami
|
||||||
|
subname: (PostgreSQL)
|
||||||
|
description: >-
|
||||||
|
A simple, easy to use, self-hosted web analytics solution.
|
||||||
|
services:
|
||||||
|
$$id:
|
||||||
|
name: Umami
|
||||||
|
documentation: "Official docs are [here](https://umami.is/docs/getting-started)"
|
||||||
|
depends_on:
|
||||||
|
- $$id-postgresql
|
||||||
|
image: "ghcr.io/umami-software/umami:$$core_version"
|
||||||
|
volumes: []
|
||||||
|
environment:
|
||||||
|
- ADMIN_PASSWORD=$$secret_admin_password
|
||||||
|
- DATABASE_URL=$$secret_database_url
|
||||||
|
- DATABASE_TYPE=$$config_database_type
|
||||||
|
- HASH_SALT=$$secret_hash_salt
|
||||||
|
ports:
|
||||||
|
- "3000"
|
||||||
|
$$id-postgresql:
|
||||||
|
name: PostgreSQL
|
||||||
|
documentation: "Official docs are [here](https://umami.is/docs/getting-started)"
|
||||||
|
depends_on: []
|
||||||
|
image: "postgres:12-alpine"
|
||||||
|
volumes:
|
||||||
|
- "$$id-postgresql-data:/var/lib/postgresql/data"
|
||||||
|
environment:
|
||||||
|
- POSTGRES_USER=$$config_postgres_user
|
||||||
|
- POSTGRES_PASSWORD=$$secret_postgres_password
|
||||||
|
- POSTGRES_DB=$$config_postgres_db
|
||||||
|
ports: []
|
||||||
|
files:
|
||||||
|
- location: /docker-entrypoint-initdb.d/schema.postgresql.sql
|
||||||
|
content: |2-
|
||||||
|
|
||||||
|
-- CreateTable
|
||||||
|
CREATE TABLE "account" (
|
||||||
|
"user_id" SERIAL NOT NULL,
|
||||||
|
"username" VARCHAR(255) NOT NULL,
|
||||||
|
"password" VARCHAR(60) NOT NULL,
|
||||||
|
"is_admin" BOOLEAN NOT NULL DEFAULT false,
|
||||||
|
"created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
"updated_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
|
||||||
|
PRIMARY KEY ("user_id")
|
||||||
|
);
|
||||||
|
|
||||||
|
-- CreateTable
|
||||||
|
CREATE TABLE "event" (
|
||||||
|
"event_id" SERIAL NOT NULL,
|
||||||
|
"website_id" INTEGER NOT NULL,
|
||||||
|
"session_id" INTEGER NOT NULL,
|
||||||
|
"created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
"url" VARCHAR(500) NOT NULL,
|
||||||
|
"event_type" VARCHAR(50) NOT NULL,
|
||||||
|
"event_value" VARCHAR(50) NOT NULL,
|
||||||
|
|
||||||
|
PRIMARY KEY ("event_id")
|
||||||
|
);
|
||||||
|
|
||||||
|
-- CreateTable
|
||||||
|
CREATE TABLE "pageview" (
|
||||||
|
"view_id" SERIAL NOT NULL,
|
||||||
|
"website_id" INTEGER NOT NULL,
|
||||||
|
"session_id" INTEGER NOT NULL,
|
||||||
|
"created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
"url" VARCHAR(500) NOT NULL,
|
||||||
|
"referrer" VARCHAR(500),
|
||||||
|
|
||||||
|
PRIMARY KEY ("view_id")
|
||||||
|
);
|
||||||
|
|
||||||
|
-- CreateTable
|
||||||
|
CREATE TABLE "session" (
|
||||||
|
"session_id" SERIAL NOT NULL,
|
||||||
|
"session_uuid" UUID NOT NULL,
|
||||||
|
"website_id" INTEGER NOT NULL,
|
||||||
|
"created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
"hostname" VARCHAR(100),
|
||||||
|
"browser" VARCHAR(20),
|
||||||
|
"os" VARCHAR(20),
|
||||||
|
"device" VARCHAR(20),
|
||||||
|
"screen" VARCHAR(11),
|
||||||
|
"language" VARCHAR(35),
|
||||||
|
"country" CHAR(2),
|
||||||
|
|
||||||
|
PRIMARY KEY ("session_id")
|
||||||
|
);
|
||||||
|
|
||||||
|
-- CreateTable
|
||||||
|
CREATE TABLE "website" (
|
||||||
|
"website_id" SERIAL NOT NULL,
|
||||||
|
"website_uuid" UUID NOT NULL,
|
||||||
|
"user_id" INTEGER NOT NULL,
|
||||||
|
"name" VARCHAR(100) NOT NULL,
|
||||||
|
"domain" VARCHAR(500),
|
||||||
|
"share_id" VARCHAR(64),
|
||||||
|
"created_at" TIMESTAMPTZ(6) DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
|
||||||
|
PRIMARY KEY ("website_id")
|
||||||
|
);
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE UNIQUE INDEX "account.username_unique" ON "account"("username");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "event_created_at_idx" ON "event"("created_at");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "event_session_id_idx" ON "event"("session_id");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "event_website_id_idx" ON "event"("website_id");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "pageview_created_at_idx" ON "pageview"("created_at");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "pageview_session_id_idx" ON "pageview"("session_id");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "pageview_website_id_created_at_idx" ON "pageview"("website_id", "created_at");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "pageview_website_id_idx" ON "pageview"("website_id");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "pageview_website_id_session_id_created_at_idx" ON "pageview"("website_id", "session_id", "created_at");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE UNIQUE INDEX "session.session_uuid_unique" ON "session"("session_uuid");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "session_created_at_idx" ON "session"("created_at");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "session_website_id_idx" ON "session"("website_id");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE UNIQUE INDEX "website.website_uuid_unique" ON "website"("website_uuid");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE UNIQUE INDEX "website.share_id_unique" ON "website"("share_id");
|
||||||
|
|
||||||
|
-- CreateIndex
|
||||||
|
CREATE INDEX "website_user_id_idx" ON "website"("user_id");
|
||||||
|
|
||||||
|
-- AddForeignKey
|
||||||
|
ALTER TABLE "event" ADD FOREIGN KEY ("session_id") REFERENCES "session"("session_id") ON DELETE CASCADE ON UPDATE CASCADE;
|
||||||
|
|
||||||
|
-- AddForeignKey
|
||||||
|
ALTER TABLE "event" ADD FOREIGN KEY ("website_id") REFERENCES "website"("website_id") ON DELETE CASCADE ON UPDATE CASCADE;
|
||||||
|
|
||||||
|
-- AddForeignKey
|
||||||
|
ALTER TABLE "pageview" ADD FOREIGN KEY ("session_id") REFERENCES "session"("session_id") ON DELETE CASCADE ON UPDATE CASCADE;
|
||||||
|
|
||||||
|
-- AddForeignKey
|
||||||
|
ALTER TABLE "pageview" ADD FOREIGN KEY ("website_id") REFERENCES "website"("website_id") ON DELETE CASCADE ON UPDATE CASCADE;
|
||||||
|
|
||||||
|
-- AddForeignKey
|
||||||
|
ALTER TABLE "session" ADD FOREIGN KEY ("website_id") REFERENCES "website"("website_id") ON DELETE CASCADE ON UPDATE CASCADE;
|
||||||
|
|
||||||
|
-- AddForeignKey
|
||||||
|
ALTER TABLE "website" ADD FOREIGN KEY ("user_id") REFERENCES "account"("user_id") ON DELETE CASCADE ON UPDATE CASCADE;
|
||||||
|
|
||||||
|
insert into account (username, password, is_admin) values ('admin', '$$hashed$$secret_admin_password', true);
|
||||||
|
variables:
|
||||||
|
- id: $$secret_database_url
|
||||||
|
name: DATABASE_URL
|
||||||
|
label: Database URL for PostgreSQL
|
||||||
|
defaultValue: >-
|
||||||
|
postgresql://$$config_postgres_user:$$secret_postgres_password@$$id-postgresql:5432/$$config_postgres_db
|
||||||
|
description: ""
|
||||||
|
- id: $$secret_hash_salt
|
||||||
|
name: HASH_SALT
|
||||||
|
label: Hash Salt
|
||||||
|
defaultValue: $$generate_hex(64)
|
||||||
|
description: ""
|
||||||
|
- id: $$config_database_type
|
||||||
|
name: DATABASE_TYPE
|
||||||
|
label: Database Type
|
||||||
|
defaultValue: "postgresql"
|
||||||
|
description: ""
|
||||||
|
- id: $$config_postgres_user
|
||||||
|
name: POSTGRES_USER
|
||||||
|
label: PostgreSQL User
|
||||||
|
defaultValue: $$generate_username
|
||||||
|
description: ""
|
||||||
|
- id: $$secret_postgres_password
|
||||||
|
name: POSTGRES_PASSWORD
|
||||||
|
label: PostgreSQL Password
|
||||||
|
defaultValue: $$generate_password
|
||||||
|
description: ""
|
||||||
|
- id: $$config_postgres_db
|
||||||
|
name: POSTGRES_DB
|
||||||
|
label: PostgreSQL Database
|
||||||
|
defaultValue: umami
|
||||||
|
description: ""
|
||||||
|
- id: $$secret_admin_password
|
||||||
|
name: ADMIN_PASSWORD
|
||||||
|
label: Initial Admin Password
|
||||||
|
defaultValue: $$generate_password
|
||||||
|
description: ""
|
||||||
|
showOnConfiguration: true
|
||||||
- templateVersion: 1.0.0
|
- templateVersion: 1.0.0
|
||||||
defaultVersion: v0.29.1
|
defaultVersion: v0.29.1
|
||||||
documentation: https://docs.meilisearch.com/learn/getting_started/quick_start.html
|
documentation: https://docs.meilisearch.com/learn/getting_started/quick_start.html
|
||||||
|
@ -238,7 +238,6 @@ async function hasura(service: any, template: any) {
|
|||||||
async function umami(service: any, template: any) {
|
async function umami(service: any, template: any) {
|
||||||
const { postgresqlUser, postgresqlPassword, postgresqlDatabase, umamiAdminPassword, hashSalt } = service.umami
|
const { postgresqlUser, postgresqlPassword, postgresqlDatabase, umamiAdminPassword, hashSalt } = service.umami
|
||||||
const { id } = service
|
const { id } = service
|
||||||
|
|
||||||
const secrets = [
|
const secrets = [
|
||||||
`HASH_SALT@@@${hashSalt}`,
|
`HASH_SALT@@@${hashSalt}`,
|
||||||
`POSTGRES_PASSWORD@@@${postgresqlPassword}`,
|
`POSTGRES_PASSWORD@@@${postgresqlPassword}`,
|
||||||
|
@ -17,7 +17,7 @@ import { day } from './dayjs';
|
|||||||
import { saveBuildLog } from './buildPacks/common';
|
import { saveBuildLog } from './buildPacks/common';
|
||||||
import { scheduler } from './scheduler';
|
import { scheduler } from './scheduler';
|
||||||
|
|
||||||
export const version = '3.11.2';
|
export const version = '3.11.3';
|
||||||
export const isDev = process.env.NODE_ENV === 'development';
|
export const isDev = process.env.NODE_ENV === 'development';
|
||||||
|
|
||||||
const algorithm = 'aes-256-ctr';
|
const algorithm = 'aes-256-ctr';
|
||||||
|
@ -1,145 +1,12 @@
|
|||||||
import { isDev } from "./common";
|
import { isDev } from "./common";
|
||||||
import fs from 'fs/promises';
|
import fs from 'fs/promises';
|
||||||
export async function getTemplates() {
|
export async function getTemplates() {
|
||||||
let templates: any = [];
|
const templatePath = isDev ? './templates.json' : '/app/templates.json';
|
||||||
if (isDev) {
|
const ts = await fs.readFile(templatePath, 'utf8')
|
||||||
templates = JSON.parse(await (await fs.readFile('./templates.json')).toString())
|
if (ts) {
|
||||||
} else {
|
return JSON.parse(ts);
|
||||||
templates = JSON.parse(await (await fs.readFile('/app/templates.json')).toString())
|
|
||||||
}
|
}
|
||||||
// if (!isDev) {
|
return [];
|
||||||
// templates.push({
|
|
||||||
// "templateVersion": "1.0.0",
|
|
||||||
// "defaultVersion": "latest",
|
|
||||||
// "name": "Test-Fake-Service",
|
|
||||||
// "description": "",
|
|
||||||
// "services": {
|
|
||||||
// "$$id": {
|
|
||||||
// "name": "Test-Fake-Service",
|
|
||||||
// "depends_on": [
|
|
||||||
// "$$id-postgresql",
|
|
||||||
// "$$id-redis"
|
|
||||||
// ],
|
|
||||||
// "image": "weblate/weblate:$$core_version",
|
|
||||||
// "volumes": [
|
|
||||||
// "$$id-data:/app/data",
|
|
||||||
// ],
|
|
||||||
// "environment": [
|
|
||||||
// `POSTGRES_SECRET=$$secret_postgres_secret`,
|
|
||||||
// `WEBLATE_SITE_DOMAIN=$$config_weblate_site_domain`,
|
|
||||||
// `WEBLATE_ADMIN_PASSWORD=$$secret_weblate_admin_password`,
|
|
||||||
// `POSTGRES_PASSWORD=$$secret_postgres_password`,
|
|
||||||
// `POSTGRES_USER=$$config_postgres_user`,
|
|
||||||
// `POSTGRES_DATABASE=$$config_postgres_db`,
|
|
||||||
// `POSTGRES_HOST=$$id-postgresql`,
|
|
||||||
// `POSTGRES_PORT=5432`,
|
|
||||||
// `REDIS_HOST=$$id-redis`,
|
|
||||||
// ],
|
|
||||||
// "ports": [
|
|
||||||
// "8080"
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// "$$id-postgresql": {
|
|
||||||
// "name": "PostgreSQL",
|
|
||||||
// "depends_on": [],
|
|
||||||
// "image": "postgres:14-alpine",
|
|
||||||
// "volumes": [
|
|
||||||
// "$$id-postgresql-data:/var/lib/postgresql/data",
|
|
||||||
// ],
|
|
||||||
// "environment": [
|
|
||||||
// "POSTGRES_USER=$$config_postgres_user",
|
|
||||||
// "POSTGRES_PASSWORD=$$secret_postgres_password",
|
|
||||||
// "POSTGRES_DB=$$config_postgres_db",
|
|
||||||
// ],
|
|
||||||
// "ports": []
|
|
||||||
// },
|
|
||||||
// "$$id-redis": {
|
|
||||||
// "name": "Redis",
|
|
||||||
// "depends_on": [],
|
|
||||||
// "image": "redis:7-alpine",
|
|
||||||
// "volumes": [
|
|
||||||
// "$$id-redis-data:/data",
|
|
||||||
// ],
|
|
||||||
// "environment": [],
|
|
||||||
// "ports": [],
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
// "variables": [
|
|
||||||
// {
|
|
||||||
// "id": "$$config_weblate_site_domain",
|
|
||||||
// "main": "$$id",
|
|
||||||
// "name": "WEBLATE_SITE_DOMAIN",
|
|
||||||
// "label": "Weblate Domain",
|
|
||||||
// "defaultValue": "$$generate_domain",
|
|
||||||
// "description": "",
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "id": "$$secret_weblate_admin_password",
|
|
||||||
// "main": "$$id",
|
|
||||||
// "name": "WEBLATE_ADMIN_PASSWORD",
|
|
||||||
// "label": "Weblate Admin Password",
|
|
||||||
// "defaultValue": "$$generate_password",
|
|
||||||
// "description": "",
|
|
||||||
// "extras": {
|
|
||||||
// "isVisibleOnUI": true,
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "id": "$$secret_weblate_admin_password2",
|
|
||||||
// "name": "WEBLATE_ADMIN_PASSWORD2",
|
|
||||||
// "label": "Weblate Admin Password2",
|
|
||||||
// "defaultValue": "$$generate_password",
|
|
||||||
// "description": "",
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "id": "$$config_postgres_user",
|
|
||||||
// "main": "$$id-postgresql",
|
|
||||||
// "name": "POSTGRES_USER",
|
|
||||||
// "label": "PostgreSQL User",
|
|
||||||
// "defaultValue": "$$generate_username",
|
|
||||||
// "description": "",
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "id": "$$secret_postgres_password",
|
|
||||||
// "main": "$$id-postgresql",
|
|
||||||
// "name": "POSTGRES_PASSWORD",
|
|
||||||
// "label": "PostgreSQL Password",
|
|
||||||
// "defaultValue": "$$generate_password(32)",
|
|
||||||
// "description": "",
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "id": "$$secret_postgres_password_hex32",
|
|
||||||
// "name": "POSTGRES_PASSWORD_hex32",
|
|
||||||
// "label": "PostgreSQL Password hex32",
|
|
||||||
// "defaultValue": "$$generate_hex(32)",
|
|
||||||
// "description": "",
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "id": "$$config_postgres_something_hex32",
|
|
||||||
// "name": "POSTGRES_SOMETHING_HEX32",
|
|
||||||
// "label": "PostgreSQL Something hex32",
|
|
||||||
// "defaultValue": "$$generate_hex(32)",
|
|
||||||
// "description": "",
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "id": "$$config_postgres_db",
|
|
||||||
// "main": "$$id-postgresql",
|
|
||||||
// "name": "POSTGRES_DB",
|
|
||||||
// "label": "PostgreSQL Database",
|
|
||||||
// "defaultValue": "weblate",
|
|
||||||
// "description": "",
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "id": "$$secret_postgres_secret",
|
|
||||||
// "name": "POSTGRES_SECRET",
|
|
||||||
// "label": "PostgreSQL Secret",
|
|
||||||
// "defaultValue": "",
|
|
||||||
// "description": "",
|
|
||||||
// },
|
|
||||||
// ]
|
|
||||||
// })
|
|
||||||
// }
|
|
||||||
return templates
|
|
||||||
}
|
}
|
||||||
const compareSemanticVersions = (a: string, b: string) => {
|
const compareSemanticVersions = (a: string, b: string) => {
|
||||||
const a1 = a.split('.');
|
const a1 = a.split('.');
|
||||||
@ -156,15 +23,14 @@ const compareSemanticVersions = (a: string, b: string) => {
|
|||||||
};
|
};
|
||||||
export async function getTags(type: string) {
|
export async function getTags(type: string) {
|
||||||
if (type) {
|
if (type) {
|
||||||
let tags: any = [];
|
const tagsPath = isDev ? './tags.json' : '/app/tags.json';
|
||||||
if (isDev) {
|
const data = await fs.readFile(tagsPath, 'utf8')
|
||||||
tags = JSON.parse(await (await fs.readFile('./tags.json')).toString())
|
let tags = JSON.parse(data)
|
||||||
} else {
|
if (tags) {
|
||||||
tags = JSON.parse(await (await fs.readFile('/app/tags.json')).toString())
|
|
||||||
}
|
|
||||||
tags = tags.find((tag: any) => tag.name.includes(type))
|
tags = tags.find((tag: any) => tag.name.includes(type))
|
||||||
tags.tags = tags.tags.sort(compareSemanticVersions).reverse();
|
tags.tags = tags.tags.sort(compareSemanticVersions).reverse();
|
||||||
return tags
|
return tags
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
|
@ -287,11 +287,10 @@ export async function proxyConfiguration(request: FastifyRequest<OnlyId>, remote
|
|||||||
if (
|
if (
|
||||||
!runningContainers[destinationDockerId] ||
|
!runningContainers[destinationDockerId] ||
|
||||||
runningContainers[destinationDockerId].length === 0 ||
|
runningContainers[destinationDockerId].length === 0 ||
|
||||||
!runningContainers[destinationDockerId].includes(id)
|
runningContainers[destinationDockerId].filter((container) => container.startsWith(id)).length === 0
|
||||||
) {
|
) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if (buildPack === 'compose') {
|
if (buildPack === 'compose') {
|
||||||
const services = Object.entries(JSON.parse(dockerComposeConfiguration))
|
const services = Object.entries(JSON.parse(dockerComposeConfiguration))
|
||||||
if (services.length > 0) {
|
if (services.length > 0) {
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "coolify",
|
"name": "coolify",
|
||||||
"description": "An open-source & self-hostable Heroku / Netlify alternative.",
|
"description": "An open-source & self-hostable Heroku / Netlify alternative.",
|
||||||
"version": "3.11.2",
|
"version": "3.11.3",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"repository": "github:coollabsio/coolify",
|
"repository": "github:coollabsio/coolify",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user