haojianyun

welcom to my haojianyun.com

yaml 文件


version: '3'
networks:
nginxphp:

services:
nginx:
image: nginx:latest
container_name: nginx
volumes:
- ./data/conf:/etc/nginx/conf.d
- ./data/var/www:/var/www
ports:
- "80:80"
- "443:443"
depends_on:
- php-fpm
networks:
- nginxphp

php-fpm:
image: crunchgeek/php-fpm:7.3
container_name: php-fpm
volumes:
- ./data/var/www:/var/www
ports:
- "127.0.0.1:9000:9000"
networks:
- nginxphp

####

1月 19th, 2021

Posted In: Uncategorized