docker-compose.yaml 227 B

123456789101112
  1. ---
  2. services:
  3. nginx:
  4. image: nginx:1.25.5-alpine
  5. container_name: nginx
  6. ports:
  7. - 80:80
  8. - 443:443
  9. volumes:
  10. - ./config:/etc/nginx
  11. - ./data:/usr/share/nginx/html
  12. restart: unless-stopped