mcotton.space/docker-compose.yaml

13 lines
203 B
YAML
Raw Normal View History

2023-08-30 20:07:18 +00:00
version: '3'
services:
web:
image: nginx
volumes:
- ./templates:/etc/nginx/templates
- ./site:/usr/share/nginx/html
ports:
2023-08-30 20:15:54 +00:00
- "9500:80"
2023-08-30 20:07:18 +00:00
environment:
- NGINX_PORT=80