You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
383 B
16 lines
383 B
version: '3.8'
|
|
|
|
services:
|
|
# composer:
|
|
# image: composer:2.0.14
|
|
# volumes:
|
|
# - ./:/app
|
|
# command: bash -c "composer config repo.packagist composer https://mirrors.aliyun.com/composer/&&composer update"
|
|
php:
|
|
image: php:8.0.6-fpm-alpine3.13
|
|
ports:
|
|
- 8080:8000
|
|
volumes:
|
|
- ./:/www
|
|
command: "php artisan serve --host 0.0.0.0 --port 8080"
|