- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
320 B
YAML
Executable File
16 lines
320 B
YAML
Executable File
app:
|
|
restart: 'on-failure'
|
|
image: php:7
|
|
working_dir: /app
|
|
command: vendor/bin/phpunit -v -c tests/phpunit.xml --coverage-text --strict-coverage --stop-on-risky
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- .:/app
|
|
|
|
composer:
|
|
restart: 'no'
|
|
image: composer/composer:php7
|
|
command: install
|
|
volumes:
|
|
- .:/app |