services: docs: image: nginx:alpine container_name: smart-trainer-docs restart: unless-stopped mem_limit: 64m ports: - "8090:80" volumes: - ./docs:/usr/share/nginx/html:ro - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro healthcheck: test: ["CMD", "wget", "-q", "--spider", "http://localhost:80/"] interval: 30s timeout: 5s retries: 3