Files
bknd-examples/docker-compose.yml
Shishant Biswas 95a9a62704
All checks were successful
Build and Push to Gitea Registry / build-and-push (push) Successful in 6m40s
cleanups/refactor of the entire main branch
2026-03-15 23:29:10 +05:30

30 lines
617 B
YAML

services:
app:
image: gitea.bsws.in/shishantbiswas/bknd-examples:tanstack-start
deploy:
resources:
limits:
cpus: '0.5'
memory: 2G
restart_policy:
condition: on-failure
expose:
- 3000
environment:
DATABASE_URL: http://db:8080
depends_on:
- db
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:3000" ]
interval: 15s
timeout: 5s
retries: 3
volumes:
- "./data:/app/data"
db:
image: ghcr.io/tursodatabase/libsql-server
volumes:
- libsql:/var/lib/sqld
volumes:
libsql: