Skip to content

🏗️ New Service: Kaneo #251

@NI-R0

Description

@NI-R0

Service Description

I'd love to see the current version of Kaneo implemented.

I know that Kaneo is technically already featured in the repo, but it seems to be quite outdated.
Additionally, the current version requires a few new environment variables: https://github.com/usekaneo/kaneo/blob/main/.env.sample

Thanks :)

Docker Compose File Link

https://github.com/usekaneo/kaneo/blob/main/compose.yml

Docker Compose Configuration

services:
  postgres:
    image: postgres:16-alpine
    env_file:
      - .env
    ports:
      - "5432:5432"
    volumes:
      - postgres_data:/var/lib/postgresql/data
    restart: unless-stopped
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U kaneo -d kaneo"]
      interval: 10s
      timeout: 5s
      retries: 5

  api:
    image: ghcr.io/usekaneo/api:latest
    ports:
      - "1337:1337"
    env_file:
      - .env
    depends_on:
      postgres:
        condition: service_healthy
    restart: unless-stopped

  web:
    image: ghcr.io/usekaneo/web:latest
    ports:
      - "5173:5173"
    env_file:
      - .env
    depends_on:
      - api
    restart: unless-stopped

volumes:
  postgres_data:

Website of Service

https://kaneo.app/

Would you be willing to work on this service?

  • Yes, I'd like to implement this feature
  • I could help with parts of this feature
  • No, I'm just suggesting the feature

Metadata

Metadata

Assignees

No one assigned

    Labels

    new servicerequest to add a new service

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions