16 lines
333 B
YAML
16 lines
333 B
YAML
version: '3'
|
|
services:
|
|
hyperf-skeleton:
|
|
container_name: hyperf-skeleton
|
|
image: hyperf-skeleton
|
|
build:
|
|
context: .
|
|
volumes:
|
|
- ./:/opt/www
|
|
ports:
|
|
- 9501:9501
|
|
environment:
|
|
- APP_ENV=dev
|
|
- SCAN_CACHEABLE=false
|
|
entrypoint: ["./entrypoint.sh", 'start'] # 开发环境启动命令
|