Exmaple build micro service on phalcon php
First you need install docker and docker composer, after that just running the command below:
docker-compose up -d
Then waiting a moment to download on image, but frm api need library php so that you also need running command below
docker-compose exec php bash
cd /app/ && composer install
cp env.example env
docker-compose exec flyway bash
flyway -configFiles=sql/flyway/config.conf migrate
Then go to url http://localhost:9090 to import database, to get database file go to directory database, when you finish just open again http://localhost
vendor/bin/phpcs app --standard=PSR2 --ignore=app/migrations
vendor/bin/phpcbf app --standard=PSR2 --ignore=app/migrations