Files
templates/blueprints/i18n-blog/docker-compose.yml
Jainil Prajapati 🪐 8793a5c54d Add Kuno i18n blog template (#293)
* Add Kuno i18n blog template with improved tag formatting in meta.json

* Update i18n-blog blueprint with Kuno volume configuration and JWT secret setup

* Changed Port

* Updated

* update meta.json

* feat: add i18n Blog (Kuno) entry to meta.json

- Introduced a new application entry for i18n Blog (Kuno), detailing its version, description, logo, and relevant links.
- Categorized the application with appropriate tags for better discoverability.
- Removed the previous duplicate entry for i18n Blog to streamline the application catalog.

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
2025-08-22 23:45:26 -06:00

20 lines
416 B
YAML

version: "3.8"
services:
kuno:
image: ictrun/kuno:latest
restart: unless-stopped
environment:
NEXT_PUBLIC_API_URL: ${NEXT_PUBLIC_API_URL}
DB_PATH: /app/data/blog.db
UPLOAD_DIR: /app/data/uploads
GIN_MODE: release
NODE_ENV: production
JWT_SECRET: ${JWT_SECRET}
RECOVERY_MODE: ${RECOVERY_MODE}
volumes:
- kuno-data:/app/data
volumes:
kuno-data: {}