version: '3'
services:
nginx:
image: nginx:latest
container_name: nginx-compose
volumes:
- ./wwwroot:/usr/share/nginx/html:rw
- ./nginx/nginx/:/etc/nginx/:rw
- ./log/nginx:/var/log/nginx:rw
restart: always
links:
- php
ports:
- 80:80
php:
image: leleos/php-fpm:5.3
restart: always
volumes:
- ./wwwroot:/usr/share/nginx/html:rw
- ./php/log:/var/log/phplog:rw
container_name: php-compose
environment:
NEW_UID: 1000
NEW_GID: 1000
镜像:leleos/php-fpm