Dockerfile

CentOSで書いていますが概ねDebianとかでも同じだと思います

docker-compose.yml

サンプルです

1
2
3
4
5
6
7
8
9
10
version: "2"

services:
Pthread:
container_name: [IMAGE]
hostname: Pthread
image: [IMAGE]:latest
networks:
b0:
ipv4_address: x.x.x.x

実行

1
$ docker-compose run Pthread php /path/to/multi_thread.php

サンプルコード

こちらのサイトのサンプルがわかりやすかったです