services: website: image: nginx:alpine container_name: website restart: unless-stopped ports: - "{{ website_port }}:80" volumes: - ./html:/usr/share/nginx/html:ro - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro