I deploy a FastAPI service with docker (see my docker-compose.yml and app).

My service directory gets filled with files index.html, index.html.1, index.html.2,… that all contain

They seem to be generated any time the docker healthcheck pings the service.

How can I get rid of these?

PS: I had to put a screenshot, because Lemmy stripped my HTML in the code quote.

  • @[email protected]
    link
    fedilink
    English
    5
    edit-2
    8 months ago

    That’s weird, I have never noticed any kind of .html files generation when accessing the docs and I have worked with F.Api for some time now, also can’t seem to find ang mention of this generation in the docs (that it actually writes files).

    Also isn’t the default doc path /docs (/redoc)

    • MartínOP
      link
      fedilink
      2
      edit-2
      8 months ago

      Ok, that was stupid. Doing healthcheck with wget, does what wget does: it downloads the result. I had to add --spider to stop doing that

        wget -nv --spider http://localhost:8000 || exit 1
      
        • MartínOP
          link
          fedilink
          18 months ago

          To me it depends on the base image. Some don’t have curl, but have wget. I would go with the flow instead of installing it myself. Especially if I can get away with not having to add more layers for an image of my own and/or using the same command for all containers