Hey guys, I just wanted to ask if it is possible t...
# docker
o
Hey guys, I just wanted to ask if it is possible to move the "x-meltano..." properties from the docker-compose file to somewhere else. THis is what I mean:
Copy code
version: '3.8'

x-meltano-image: &meltano-image
  image: meltano-demo-project:dev # Change me to a name and tag that makes sense for your project
  build: .

x-meltano-env: &meltano-env
  MELTANO_DATABASE_URI: <postgresql://postgres:postgres@meltano-system-db/meltano>
  # Add any additional Meltano configuration environment variables here

# Uncomment if you are using the Airflow orchestrator, delete otherwise
x-airflow-env: &airflow-env
  AIRFLOW__CORE__SQL_ALCHEMY_CONN: <postgres://postgres:postgres@airflow-metadata-db/airflow>
  AIRFLOW__CORE__EXECUTOR: LocalExecutor
Is it possible to get rid of this?
Ah I got it sorry I'm new to docker-compose