Files
oficial/testing.compose.yml

34 lines
596 B
YAML
Raw Normal View History

2024-11-12 21:51:56 -03:00
services:
testing:
profiles:
- testing
build: .
2025-04-29 21:41:49 -04:00
container_name: incoviba_tests
2024-11-12 21:51:56 -03:00
env_file:
- ${APP_PATH:-.}/.test.env
- ./.key.env
volumes:
- ${APP_PATH:-.}/:/code
command: [ '/code/bin/phpunit-watcher', 'watch' ]
2025-04-29 21:41:49 -04:00
networks:
- testing
2024-11-12 21:51:56 -03:00
depends_on:
- test-db
test-db:
profiles:
- testing
2025-04-29 21:41:49 -04:00
image: mariadb:latest
2024-11-12 21:51:56 -03:00
container_name: incoviba_test_db
env_file: ${APP_PATH:-.}/.test.db.env
volumes:
- test-db:/var/lib/mysql
2024-11-28 11:41:19 -03:00
networks:
2025-04-29 21:41:49 -04:00
- testing
2024-11-12 21:51:56 -03:00
volumes:
test-db: {}
2024-11-28 11:41:19 -03:00
networks:
2025-04-29 21:41:49 -04:00
testing: {}