mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* Add Kener entry to meta.json and improve JSON encoding in TemplateDialog - Introduced Kener, an open-source status page system, to meta.json with relevant links and tags. - Updated TemplateDialog to use encodeURIComponent for proper handling of Unicode characters in JSON encoding. - Removed unnecessary console log from TemplateGrid for cleaner code. * Update Kener logo in meta.json and remove old logo file - Changed the logo reference for Kener in meta.json from 'kener.png' to 'image.png'. - Deleted the outdated 'kener.png' file from the repository. * Add GitLab CE entry to meta.json - Introduced GitLab Community Edition with a detailed description, logo, and relevant links. - Updated tags for better categorization, including 'git', 'ci-cd', 'version-control', and 'project-management'.
40 lines
1020 B
YAML
40 lines
1020 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
kener:
|
|
image: rajnandan1/kener:latest
|
|
environment:
|
|
- TZ=${TZ}
|
|
- KENER_SECRET_KEY=${KENER_SECRET_KEY} # 🔐 API key / secret
|
|
- DATABASE_URL=${DATABASE_URL}
|
|
- KENER_BASE_PATH=${KENER_BASE_PATH}
|
|
- ORIGIN=${ORIGIN}
|
|
- RESEND_API_KEY=${RESEND_API_KEY} # 🔐 API key
|
|
- RESEND_SENDER_EMAIL=${RESEND_SENDER_EMAIL}
|
|
ports:
|
|
- 3000
|
|
volumes:
|
|
- kener_db:/app/database
|
|
- ../files/uploads:/app/uploads
|
|
restart: unless-stopped
|
|
|
|
postgres:
|
|
image: postgres:alpine
|
|
environment:
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD} # 🔐 DB password
|
|
- POSTGRES_DB=${POSTGRES_DB}
|
|
restart: unless-stopped
|
|
|
|
mysql:
|
|
image: mariadb:11
|
|
environment:
|
|
- MYSQL_USER=${MYSQL_USER}
|
|
- MYSQL_PASSWORD=${MYSQL_PASSWORD} # 🔐 DB password
|
|
- MYSQL_DATABASE=${MYSQL_DATABASE}
|
|
- MYSQL_RANDOM_ROOT_PASSWORD=true
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
kener_db: {}
|