From 7fa6220815eafc74634a59b438142e373ff1c8ee Mon Sep 17 00:00:00 2001 From: Nick Yeoman Date: Wed, 7 Jan 2026 10:49:57 -0800 Subject: [PATCH] removed unami --- unami_dev/docker-compose.yml | 37 ------------------------------------ 1 file changed, 37 deletions(-) delete mode 100644 unami_dev/docker-compose.yml diff --git a/unami_dev/docker-compose.yml b/unami_dev/docker-compose.yml deleted file mode 100644 index 888dc72..0000000 --- a/unami_dev/docker-compose.yml +++ /dev/null @@ -1,37 +0,0 @@ -# Umami -# https://github.com/umami-software/umami/blob/master/docker-compose.yml - -services: - umami: - image: ghcr.io/umami-software/umami:postgresql-latest - ports: - - "3000:3000" - environment: - DATABASE_URL: postgresql://umami:umami@db:5432/umami - DATABASE_TYPE: postgresql - APP_SECRET: replace-me-with-a-random-string - depends_on: - db: - condition: service_healthy - restart: always - healthcheck: - test: ["CMD-SHELL", "curl http://localhost:3000/api/heartbeat"] - interval: 5s - timeout: 5s - retries: 5 - db: - image: postgres:15-alpine - environment: - POSTGRES_DB: umami - POSTGRES_USER: umami - POSTGRES_PASSWORD: umami - volumes: - - umami-db-data:/var/lib/postgresql/data - restart: always - healthcheck: - test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"] - interval: 5s - timeout: 5s - retries: 5 -volumes: - umami-db-data: \ No newline at end of file