Hi all, I started a fresh new installation with th...
# ask-community
f
Hi all, I started a fresh new installation with this Docker composition template https://github.com/fraibacas/prefect-orion pointing to the latest build. It is working as expected but the Blocks page is empty. Then using this API call
Copy code
curl -X 'POST' \
  '<http://prefect-server:4200/api/block_types/install_system_block_types>' \
  -H 'accept: application/json' \
  -H 'x-prefect-api-version: 2.6.1' \
  -d ''
I’m getting few of them available from that page, the Remote File System one doesn’t come up though. Is this expected with the latest version?
1
a
Did you check the official docker compose recipe from Ryan available on Discourse?
f
Not yet, I’ll try with that too
🙌 1
@Anna Geller I checked out that repo and played with the composition by setting images to
latest
. Orion is continuously restarting
Copy code
docker compose --profile orion ps -a
NAME                                COMMAND                  SERVICE             STATUS              PORTS
prefect-docker-compose-database-1   "docker-entrypoint.s…"   database            running             5432/tcp
prefect-docker-compose-orion-1      "prefect orion start"    orion               restarting
with this error:
Copy code
prefect-docker-compose-orion-1  | Error: No such command 'orion'.
prefect-docker-compose-orion-1  | Usage: prefect [OPTIONS] COMMAND [ARGS]...
prefect-docker-compose-orion-1  | Try 'prefect -h' for help.
prefect-docker-compose-orion-1  |
prefect-docker-compose-orion-1  | Error: No such command 'orion'.
prefect-docker-compose-orion-1  | Usage: prefect [OPTIONS] COMMAND [ARGS]...
prefect-docker-compose-orion-1  | Try 'prefect -h' for help.
prefect-docker-compose-orion-1  |
Using
prefect:2.6.1-python3.9
is much better and the blocks page is not that empty. Thanks!
👍 2
1
🙏 1