From 35fc12638cbb8b16f3f1b95196e0724930b389dd Mon Sep 17 00:00:00 2001 From: Dennis Falling Date: Fri, 3 Apr 2026 11:05:20 -0500 Subject: [PATCH] remove docker-compose.yml in favor of README docs The compose file was intended for local dev, but the primary use case is end users pulling the published GHCR image into their own stack. README already documents the compose snippet; local dev uses bun run dev. Co-Authored-By: Claude Sonnet 4.6 --- README.md | 8 +------- docker-compose.yml | 29 ----------------------------- 2 files changed, 1 insertion(+), 36 deletions(-) delete mode 100644 docker-compose.yml diff --git a/README.md b/README.md index a75d9a8..4bed608 100644 --- a/README.md +++ b/README.md @@ -25,13 +25,7 @@ services: restart: unless-stopped ``` -Or run the full stack including Postgres: - -```bash -docker compose up -d -``` - -The server will be available at `http://localhost:3000`. +The server will be available at `http://your-server:3000`. ### Connect to Claude diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 7f76f4a..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,29 +0,0 @@ -services: - splitcount: - build: . - environment: - DATABASE_URL: postgres://splitcount:password@db:5432/splitcount - ports: - - "3000:3000" - depends_on: - db: - condition: service_healthy - restart: unless-stopped - - db: - image: postgres:17-alpine - environment: - POSTGRES_DB: splitcount - POSTGRES_USER: splitcount - POSTGRES_PASSWORD: password - volumes: - - pgdata:/var/lib/postgresql/data - healthcheck: - test: ["CMD-SHELL", "pg_isready -U splitcount -d splitcount"] - interval: 5s - timeout: 5s - retries: 5 - restart: unless-stopped - -volumes: - pgdata: