Blake List
06/13/2023, 1:41 AMRyan Peden
06/13/2023, 2:54 PMDaniel
06/13/2023, 8:55 PMhttp://<server hostname>:4200/api
which finally did it, which I got from rdepen/prefect-docker-compose, so thanks!Marc
06/14/2023, 7:21 AMBlake List
06/15/2023, 1:59 AMservices:
prefect-server:
image: prefecthq/prefect:2.10-python3.11
ports:
- 4200:4200
volumes:
- prefect_test:/root/.prefect
environment:
PREFECT_UI_API_URL: http://$HOSTNAME:4200/api
PREFECT_SERVER_API_HOST: 0.0.0.0
command: prefect server start
volumes:
prefect_test:
The API docs work, but the UI shows a blank screen, and an empty body when queried with curl.Blake List
06/15/2023, 2:05 AMRyan Peden
06/15/2023, 11:55 AM