What is a good resource to learn about what all th...
# ask-community
a
What is a good resource to learn about what all the syntax inside
dagster_cloud.yaml
? In particular
build
or
image
vs
registry
etc. Thanks
a
Thanks Sean. I did get a chance to read this. Unfortunately, i was unable to reconcile the doc with these two examples which mirrors my use case: 1. https://github.com/dagster-io/dagster-cloud-hybrid-quickstart/blob/main/dagster_cloud.yaml 2. https://github.com/dagster-io/cloud-examples/tree/main/multi-location-project That is i’d like a mono-repo with 2-3 dagster package (?). I naively assumed something like this would just work. But no dice
Copy code
locations:
  - location_name: data-eng-pipeline
    code_source:
      package_name: hooli_data_eng
    build:
      directory: ./
      registry:  <http://764506304434.dkr.ecr.us-west-2.amazonaws.com/hooli-data-science-prod|764506304434.dkr.ecr.us-west-2.amazonaws.com/hooli-data-science-prod>
  - location_name: basics
    code_source:
      python_file: definitions.py
    build:
      directory: ./hooli_basics
      registry:  <http://764506304434.dkr.ecr.us-west-2.amazonaws.com/hooli-data-science-prod|764506304434.dkr.ecr.us-west-2.amazonaws.com/hooli-data-science-prod>