Files
ryobi-crawler/docker-compose.yml

10 lines
213 B
YAML

services:
php-app:
restart: unless-stopped
build: .
volumes:
- .:/usr/src/app
command: >
sh -c "composer install && php -S 0.0.0.0:8000 -t /usr/src/app"
ports:
- "9001:8000"