wordpress-activitypub/docker-compose-test.yml
Matthias Pfefferle 73ae7a5d75 fix content creation
and added tests
2023-02-20 18:08:10 +01:00

18 lines
355 B
YAML

version: '2'
services:
test-db:
platform: linux/x86_64
image: mysql:5.7
environment:
MYSQL_DATABASE: activitypub-test
MYSQL_ROOT_PASSWORD: activitypub-test
test-php:
build:
context: .
dockerfile: Dockerfile
links:
- test-db
volumes:
- .:/app
command: ["composer", "run-script", "test"]