Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,16 @@ cd aws-mwaa-local-runner
```

### Step one: Building the Docker image
#### For Windows Users Only

If you are using Windows, you may need to run the following commands to adjust line endings in the script files before building the docker image. Windows often modifies line endings in .sh files, which can cause issues. The commands below will convert the line endings to Unix format:

```bash
sed -i -e 's/\r$//' docker/script/bootstrap.sh
sed -i -e 's/\r$//' docker/script/systemlibs.sh
sed -i -e 's/\r$//' docker/script/generate_key.sh
```


Build the Docker container image using the following command:

Expand All @@ -74,6 +84,7 @@ Build the Docker container image using the following command:

#### Local runner


Runs a local Apache Airflow environment that is a close representation of MWAA by configuration.

```bash
Expand Down