Skip to content

Release v1.4.4

Choose a tag to compare

@github-actions github-actions released this 15 May 07:35
· 5 commits to main since this release

Changes since v1.4.3

  • fix: improve translation provider handling

Docker Image

docker pull ictrun/kuno:1.4.4

Quick Deploy

One-click deployment:

curl -sSL https://raw.githubusercontent.com/xuemian168/kuno/main/deploy-from-hub.sh | bash

Docker Compose:

version: '3.8'
services:
  i18n-blog:
    image: ictrun/kuno:1.4.4
    ports:
      - "80:80"
    volumes:
      - blog-data:/app/data
    environment:
      - NEXT_PUBLIC_API_URL=https://your-domain.com/api

volumes:
  blog-data:

Manual Docker run:

docker run -d \
  --name kuno \
  -p 80:80 \
  -v blog-data:/app/data \
  -e NEXT_PUBLIC_API_URL=https://your-domain.com/api \
  ictrun/kuno:1.4.4

Version Information

Links