forked from GitHubMirrors/silverbullet-icalendar
35 lines
681 B
YAML
35 lines
681 B
YAML
services:
|
|
silverbullet-test:
|
|
image: zefhemel/silverbullet:latest
|
|
ports:
|
|
- "3001:3000"
|
|
volumes:
|
|
- sb-test-space:/space
|
|
environment:
|
|
- SB_USER=admin:admin
|
|
- SB_LOG_PUSH=true
|
|
- SB_DEBUG=true
|
|
- SB_SPACE_LUA_TRUSTED=true
|
|
|
|
mock-ics-server:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "8081:80"
|
|
volumes:
|
|
- ./test_data:/usr/share/nginx/html:ro
|
|
|
|
playwright:
|
|
image: mcr.microsoft.com/playwright:v1.49.0-jammy
|
|
volumes:
|
|
- .:/work
|
|
working_dir: /work
|
|
environment:
|
|
- CI=true
|
|
depends_on:
|
|
- silverbullet-test
|
|
- mock-ics-server
|
|
command: npx playwright test
|
|
|
|
volumes:
|
|
sb-test-space:
|