19 lines
309 B
YAML
19 lines
309 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
|
||
|
|
||
|
networks:
|
||
|
default:
|
||
|
name: hyperf-skeleton
|