2025-01-29 07:29:35 +00:00
|
|
|
version: '3.7'
|
2024-10-02 13:20:54 +00:00
|
|
|
services:
|
2025-02-10 06:44:52 +00:00
|
|
|
back:
|
2025-02-17 13:18:57 +00:00
|
|
|
image: registry.verdnatura.es/salix-back:dev
|
2025-02-10 06:44:52 +00:00
|
|
|
volumes:
|
|
|
|
- ./test/cypress/storage:/salix/storage
|
|
|
|
- ./test/cypress/back/datasources.json:/salix/loopback/server/datasources.json
|
2025-02-10 08:31:13 +00:00
|
|
|
depends_on:
|
2025-02-10 08:50:41 +00:00
|
|
|
- vn-database
|
2024-10-02 13:20:54 +00:00
|
|
|
front:
|
2025-02-10 06:44:52 +00:00
|
|
|
image: alexmorenovn/vndev:latest
|
|
|
|
command: quasar dev
|
|
|
|
volumes:
|
|
|
|
- .:/app
|
|
|
|
working_dir: /app
|
2025-02-10 11:41:42 +00:00
|
|
|
environment:
|
|
|
|
- TZ=Europe/Madrid
|
2025-02-17 13:18:57 +00:00
|
|
|
- DOCKER=true
|
2025-02-19 06:45:00 +00:00
|
|
|
# e2e:
|
|
|
|
# image: cypress-setup:latest
|
|
|
|
# command: sh -c "while [ ! -d node_modules/cypress ]; do sleep 1; done && pnpm exec cypress run --browser chromium"
|
|
|
|
# environment:
|
|
|
|
# - TZ=Europe/Madrid
|
|
|
|
# - DOCKER=true
|
|
|
|
# volumes:
|
|
|
|
# - .:/app
|
|
|
|
# working_dir: /app
|
2025-02-10 08:50:41 +00:00
|
|
|
vn-database:
|
2025-02-17 13:18:57 +00:00
|
|
|
image: registry.verdnatura.es/salix-db:dev
|