Arran
08/06/2021, 8:04 AMprefect server start
keeps giving me this error. Is there somewere i can just get a copy of the docker-compose file? I’ve tried this on two VMs now
ERROR:
Can't find a suitable configuration file in this directory or any
parent. Are you in the right directory?
Supported filenames: docker-compose.yml, docker-compose.yaml
i had a look in the directory mentioned in the traceback for the docker-compose.yml and it is there, so I’m not sure why it isn’t being recognised
Traceback (most recent call last):
File "******/venv/lib/python3.8/site-packages/prefect/cli/server.py", line 608, in start
subprocess.check_call(
File "/usr/lib/python3.8/subprocess.py", line 364, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['docker-compose', 'pull']' returned non-zero exit status 1.
Kevin Kho
docker run hello-world
to make sure it works? There can be permission things related to that. If this succeeds, the prefect server start
should work. Maybe you also need to install docker-compose
in additional to Docker?
The docker-compose.yml
is hereArran
08/09/2021, 8:52 AM