mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 20:15:41 +01:00
Rebrand to Syncfuse
This commit is contained in:
parent
0a09df5470
commit
92025c9dba
144 changed files with 1796 additions and 1977 deletions
|
|
@ -1,13 +1,13 @@
|
|||
---
|
||||
version: '3'
|
||||
version: "3"
|
||||
services:
|
||||
umami:
|
||||
syncfuse:
|
||||
build: ../
|
||||
#image: ghcr.io/umami-software/umami:postgresql-latest
|
||||
ports:
|
||||
- '3000:3000'
|
||||
- "3000:3000"
|
||||
environment:
|
||||
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
||||
DATABASE_URL: postgresql://syncfuse:syncfuse@db:5432/syncfuse
|
||||
DATABASE_TYPE: postgresql
|
||||
APP_SECRET: replace-me-with-a-random-string
|
||||
depends_on:
|
||||
|
|
@ -15,33 +15,33 @@ services:
|
|||
condition: service_healthy
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: ['CMD-SHELL', 'curl http://localhost:3000/api/heartbeat']
|
||||
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
|
||||
POSTGRES_DB: syncfuse
|
||||
POSTGRES_USER: syncfuse
|
||||
POSTGRES_PASSWORD: syncfuse
|
||||
volumes:
|
||||
- umami-db-data:/var/lib/postgresql/data
|
||||
- syncfuse-db-data:/var/lib/postgresql/data
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: ['CMD-SHELL', 'pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}']
|
||||
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
cypress:
|
||||
image: 'cypress/included:13.6.0'
|
||||
image: "cypress/included:13.6.0"
|
||||
depends_on:
|
||||
- umami
|
||||
- syncfuse
|
||||
- db
|
||||
environment:
|
||||
- CYPRESS_baseUrl=http://umami:3000
|
||||
- CYPRESS_umami_user=admin
|
||||
- CYPRESS_umami_password=umami
|
||||
- CYPRESS_baseUrl=http://syncfuse:3000
|
||||
- CYPRESS_syncfuse_user=admin
|
||||
- CYPRESS_syncfuse_password=syncfuse
|
||||
volumes:
|
||||
- ./tsconfig.json:/tsconfig.json
|
||||
- ../cypress.config.ts:/cypress.config.ts
|
||||
|
|
@ -49,4 +49,4 @@ services:
|
|||
- ../node_modules/:/node_modules
|
||||
- ../src/lib/crypto.ts:/src/lib/crypto.ts
|
||||
volumes:
|
||||
umami-db-data:
|
||||
syncfuse-db-data:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue