landing/docker-compose.yml

9 lines
180 B
YAML

version: '3'
services:
web:
image: nginx:alpine
volumes:
- ./:/usr/share/nginx/html
- ./nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "9080:80"