webflow.quick.server/docker-compose.yml
2025-05-12 00:42:26 -06:00

12 lines
207 B
YAML

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