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: