测试

version: "3"
services: 
  php: 
    restart: always
    image: php
    container_name: php
    ports: 
      - 0.0.0.0:9000:9000
    volumes: 
    - ./nginx/www:/var/www/html
    - ./php_conf:/usr/local/etc/php/conf.d
    stdin_open: true
    tty: true
  nginx: 
    restart: always
    image: nginx
    links:
      - php
    ports: 
    - 0.0.0.0:80:80
    volumes: 
    - ./nginx/www:/usr/share/nginx/html:ro
    - ./nginx/conf/conf.d:/etc/nginx/conf.d:ro
原文地址:https://www.cnblogs.com/chengfengchi/p/14087161.html