mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
add cypress docker compose file
This commit is contained in:
parent
59f4d9aff8
commit
44d8606d1a
4 changed files with 69 additions and 11 deletions
47
cypress/docker-compose.yml
Normal file
47
cypress/docker-compose.yml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
version: '3'
|
||||
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
|
||||
cypress:
|
||||
image: 'cypress/included:13.6.0'
|
||||
depends_on:
|
||||
- umami
|
||||
- db
|
||||
environment:
|
||||
- CYPRESS_baseUrl=http://localhost:3000
|
||||
entrypoint: /bin/sh -c "yarn install"
|
||||
working_dir: /cypress
|
||||
volumes:
|
||||
- ./:/cypress
|
||||
volumes:
|
||||
umami-db-data:
|
||||
Loading…
Add table
Add a link
Reference in a new issue