Sign inSign up

yhyzgn/tikeo-docs

By yhyzgn

•Updated 3 months ago

Tikeo Docs site for deployment, configuration, SDK, worker, and troubleshooting guides.

Image
0

2.6K

yhyzgn/tikeo-docs repository overview

⁠Tikeo Docs

Tikeo Docs is the versioned documentation site for deploying, configuring, integrating, and operating Tikeo.

This image is a static Docusaurus build served by nginx. It stores no product data and normally needs no persistent mount.

⁠Image tags

  • latest — latest stable release.
  • v${TIKEO_VERSION} — exact Git release tag placeholder.
  • ${TIKEO_VERSION} — semantic-version alias when published.

⁠Mounts and persistent data

tikeo-docs has no database, upload directory, or runtime config. nginx logs go to stdout/stderr. If deployed with Server, persist Server runtime files instead:

ComponentPathMount guidance
Server config/config/tikeo.ymlMount read-only when config should live outside the image.
Server TLS files/config/tlsMount read-only for process-level TLS/mTLS.
Server SQLite data/data/tikeo.dbPersist /data only for SQLite mode.
Server file logs/logs/tikeo.logEnable in config/tikeo.yml with observability.logging.log_dir: /logs.
Docs static imagenoneNo persistent mount required.

⁠Docker Compose

When running the full stack, use the repository Compose files and keep Server settings in config/tikeo.yml:

cp deploy/compose/tikeo.env.example .env
# Edit .env for Docker parameters; edit config/tikeo.yml for Tikeo service settings.
docker compose --env-file .env pull
docker compose --env-file .env up -d
open http://127.0.0.1:8081

⁠Port

PortPurpose
80nginx static documentation site.

⁠Quick start

docker run -d \
  --name tikeo-docs \
  -p 8081:80 \
  --restart unless-stopped \
  yhyzgn/tikeo-docs:latest

open http://127.0.0.1:8081

Tag summary

Content type

Image

Digest

sha256:ce2ac7736…

Size

31.4 MB

Last updated

3 months ago

docker pull yhyzgn/tikeo-docs