9 lines
179 B
YAML
9 lines
179 B
YAML
|
version: '3.8'
|
||
|
services:
|
||
|
nginx-php7:
|
||
|
image: mkz/nginx-php7:latest
|
||
|
volumes:
|
||
|
- ./path-to-site/:/var/www/html
|
||
|
ports:
|
||
|
- "8081:80"
|
||
|
restart: unless-stopped
|