Skip to content

Instantly share code, notes, and snippets.

@woodyxiong
woodyxiong / Nginx+PHP+Mysql
Last active September 23, 2018 11:58
docker-compose.yml
version: '3'
services:
nginx:
image: nginx
ports:
- "${HTTP_PORT:-80}:80"
volumes:
- ../:/data/www #注意路径
- ./default.conf:/etc/nginx/conf.d/default.conf #注意路径
links: