docker-compose.yaml 284 B

123456789101112
  1. ---
  2. services:
  3. nginx:
  4. image: docker.io/library/nginx:1.26.0-alpine
  5. container_name: nginx
  6. ports:
  7. - 80:80
  8. - 443:443
  9. volumes:
  10. - ./config/default.conf:/etc/nginx/conf.d/default.conf:ro
  11. - ./data:/usr/share/nginx/html:ro
  12. restart: unless-stopped