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?
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
Website of Service
https://kaneo.app/
Would you be willing to work on this service?