PHP Classes

File: docker-compose.yml

Recommend this page to a friend!
  Classes of Rubens Takiguti Ribeiro   Lazy JSON   docker-compose.yml   Download  
File: docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Lazy JSON
Load and parse JSON files progressively
Author: By
Last change: Review the docs
Run platform reqs in a proper moment
Date: 12 days ago
Size: 2,427 bytes
 

Contents

Class file image Download
name: lazy-json services: lib: image: lazy-json:php-8.1-cli-alpine pull_policy: never build: context: . dockerfile: Dockerfile target: runner volumes: - .:/usr/share/lazy-json - /usr/share/lazy-json/vendor env_file: - .env entrypoint: /bin/sh -c command: > ' echo "Lib lazy-json is ready" echo "Access it using:" echo -e "\t\$ docker compose exec lib sh" echo "" echo "To run the tests, execute this command inside the container:" echo -e "\t\$ composer test" echo "" echo "To run the tests from your host:" echo -e "\t\$ docker compose --profile test up" echo "" echo "To serve the doc (phpdoc) from your host:" echo -e "\t\$ docker compose --profile doc up" sleep infinity ' test: image: lazy-json:php-8.1-cli-alpine pull_policy: never build: context: . dockerfile: Dockerfile target: runner ports: - 8080:8080 env_file: - .env profiles: - dev - test entrypoint: /bin/sh -c command: > ' composer phpstan composer cs composer deps composer test echo -e "\\nStarting to serve the test result (coverage) at http://localhost:8080" php -S 0.0.0.0:8080 -t /usr/share/lazy-json/var/reports/tests/coverage/html/ ' doc: image: phpdoc/phpdoc volumes: - .:/data - /data/var ports: - 8081:8081 profiles: - dev - doc entrypoint: /bin/bash -c command: > " /opt/phpdoc/bin/phpdoc run --no-interaction --ansi --encoding=UTF-8 --title='LazyJson' --cache-folder=/data/var/cache/phpdoc --log=/data/var/logs/phpdoc --directory=/data/src --examples-dir=/data/examples --visibility=public --target=/data/var/phpdoc echo -e '\\nStarting to serve the phpdoc at http://localhost:8081' php -S 0.0.0.0:8081 -t /data/var/phpdoc/ "