I wanted to try running FTS with the included docker compose example. Following the basic procedure:
- Clone this repo.
cd into it.
- Run
docker compose build to build the image.
- Run
docker compose up to start it (I haven't changed any of the embedded config options, just playing with getting it working first).
The build step works (as does directly calling docker build .). However, on running docker compose up, the container fails to start with the error message in the title -- it can't find the entrypoint script. I can see in the Dockerfile where it's supposed to be copying that file into the container, but I'm guessing something is off.
Thanks!