GitHub user potiuk added a comment to the discussion: Error running a container
``` Initializing Environment Before starting Airflow for the first time, you need to prepare your environment, i.e. create the necessary files, directories and initialize the database. Setting the right Airflow user On Linux, the quick-start needs to know your host user id and needs to have group id set to 0. Otherwise the files created in dags, logs, config and plugins will be created with root user ownership. You have to make sure to configure them for the docker-compose: mkdir -p ./dags ./logs ./plugins ./config echo -e "AIRFLOW_UID=$(id -u)" > .env ``` What is your user id in WSL ? GitHub link: https://github.com/apache/airflow/discussions/41025#discussioncomment-15004685 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
