mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
feat: Add numerous new blueprint templates for various applications
This commit is contained in:
99
blueprints/twenty/docker-compose.yml
Normal file
99
blueprints/twenty/docker-compose.yml
Normal file
@@ -0,0 +1,99 @@
|
||||
version: "3.9"
|
||||
|
||||
services:
|
||||
twenty-change-vol-ownership:
|
||||
image: ubuntu
|
||||
user: root
|
||||
|
||||
volumes:
|
||||
- twenty-server-local-data:/tmp/server-local-data
|
||||
- twenty-docker-data:/tmp/docker-data
|
||||
command: >
|
||||
bash -c "
|
||||
chown -R 1000:1000 /tmp/server-local-data
|
||||
&& chown -R 1000:1000 /tmp/docker-data"
|
||||
|
||||
twenty-server:
|
||||
image: twentycrm/twenty:latest
|
||||
|
||||
volumes:
|
||||
- twenty-server-local-data:/app/packages/twenty-server/${STORAGE_LOCAL_PATH:-.local-storage}
|
||||
- twenty-docker-data:/app/docker-data
|
||||
environment:
|
||||
PORT: 3000
|
||||
PG_DATABASE_URL: postgres://${DB_USER}:${DB_PASSWORD}@twenty-postgres:5432/twenty
|
||||
SERVER_URL: https://${TWENTY_HOST}
|
||||
FRONT_BASE_URL: https://${TWENTY_HOST}
|
||||
REDIS_URL: redis://twenty-redis:6379
|
||||
ENABLE_DB_MIGRATIONS: "true"
|
||||
SIGN_IN_PREFILLED: "true"
|
||||
STORAGE_TYPE: local
|
||||
APP_SECRET: ${APP_SECRET}
|
||||
depends_on:
|
||||
twenty-change-vol-ownership:
|
||||
condition: service_completed_successfully
|
||||
twenty-postgres:
|
||||
condition: service_healthy
|
||||
healthcheck:
|
||||
test: curl --fail http://localhost:3000/healthz
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
restart: always
|
||||
|
||||
twenty-worker:
|
||||
image: twentycrm/twenty:latest
|
||||
|
||||
command: ["yarn", "worker:prod"]
|
||||
environment:
|
||||
PG_DATABASE_URL: postgres://${DB_USER}:${DB_PASSWORD}@twenty-postgres:5432/twenty
|
||||
SERVER_URL: https://${TWENTY_HOST}
|
||||
FRONT_BASE_URL: https://${TWENTY_HOST}
|
||||
REDIS_URL: redis://twenty-redis:6379
|
||||
ENABLE_DB_MIGRATIONS: "false"
|
||||
STORAGE_TYPE: local
|
||||
APP_SECRET: ${APP_SECRET}
|
||||
depends_on:
|
||||
twenty-postgres:
|
||||
condition: service_healthy
|
||||
twenty-server:
|
||||
condition: service_healthy
|
||||
restart: always
|
||||
|
||||
twenty-postgres:
|
||||
image: postgres:16-alpine
|
||||
|
||||
volumes:
|
||||
- twenty-postgres-data:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_USER: ${DB_USER}
|
||||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
||||
POSTGRES_DB: twenty
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U ${DB_USER} -d twenty"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
restart: always
|
||||
|
||||
twenty-redis:
|
||||
image: redis:latest
|
||||
|
||||
volumes:
|
||||
- twenty-redis-data:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
restart: always
|
||||
|
||||
networks:
|
||||
dokploy-network:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
twenty-docker-data:
|
||||
twenty-postgres-data:
|
||||
twenty-server-local-data:
|
||||
twenty-redis-data:
|
||||
37
blueprints/twenty/index.ts
Normal file
37
blueprints/twenty/index.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
import {
|
||||
type DomainSchema,
|
||||
type Schema,
|
||||
type Template,
|
||||
generateBase64,
|
||||
generatePassword,
|
||||
generateRandomDomain,
|
||||
} from "../utils";
|
||||
|
||||
export function generate(schema: Schema): Template {
|
||||
const mainDomain = generateRandomDomain(schema);
|
||||
const dbPassword = generatePassword();
|
||||
const dbUser = "twenty";
|
||||
const appSecret = generateBase64(32);
|
||||
|
||||
const domains: DomainSchema[] = [
|
||||
{
|
||||
host: mainDomain,
|
||||
port: 3000,
|
||||
serviceName: "twenty-server",
|
||||
},
|
||||
];
|
||||
|
||||
const envs = [
|
||||
`TWENTY_HOST=${mainDomain}`,
|
||||
`DB_USER=${dbUser}`,
|
||||
`DB_PASSWORD=${dbPassword}`,
|
||||
`APP_SECRET=${appSecret}`,
|
||||
"# Optional: Configure storage path",
|
||||
"# STORAGE_LOCAL_PATH=.local-storage",
|
||||
];
|
||||
|
||||
return {
|
||||
domains,
|
||||
envs,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user