16 lines
369 B
YAML
16 lines
369 B
YAML
version: "3.1"
|
|
|
|
services:
|
|
webman-jsonrpc:
|
|
image: registry.cn-shanghai.aliyuncs.com/wandoubaba/workerman:8.1
|
|
container_name: webman-jsonrpc
|
|
network_mode: host
|
|
restart: always
|
|
volumes:
|
|
- ./:/app/service
|
|
- ./php.ini:/usr/local/etc/php/php.ini
|
|
working_dir: /app/service
|
|
stdin_open: true
|
|
command: ["php", "start.php", "start"]
|
|
|