How to run laravel app? with docker-compose

I want to run laravel app, in docker. Here are my steps. I hope someone will tell me what went wrong.

1. Create a laravel app locally

composer create-project --prefer-dist laravel/laravel laravel-app 5.6

2. Create docker-compose.yml

version: "3"

services:
    php:
        image: php:7-fpm
        ports: 
          - "3021:8000"
        volumes:
            - ./laravel-app:/app
    composer:
        image: composer:latest
        volumes:
            - ./laravel-app:/app
        working_dir: /app
        command: ["install","php artisan serve --host=0.0.0.0"]
        depends_on:
            - php

then I run docker-compose up-- force-recreate-d , and I am unable to get any information through the password 127.0.0.1 force-recreate 3021 .

so I execute docker-composer log and find that the following error notification pops up in terminal

Invalid argument php artisan serve --host=0.0.0.0. Use "composer require php artisan serve --host=0.0.0.0" instead to add packages to your composer.json.

how should I correct my errors?

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b30c07-2b588.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b30c07-2b588.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?