mirror of
https://github.com/Aviortheking/CA_LARAVEL.git
synced 2025-04-23 03:12:12 +00:00
14 lines
270 B
YAML
Executable File
14 lines
270 B
YAML
Executable File
version: "3"
|
|
services:
|
|
php:
|
|
image: project
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
dev: "yes"
|
|
volumes:
|
|
- ./:/project
|
|
ports:
|
|
- "127.0.0.1:8000:8000"
|
|
command: "php artisan serve --host=0.0.0.0 --port=8000" |