Skip to content

Commit

Permalink
docs: fix docker-compose syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tskir committed Nov 2, 2023
1 parent c41ea84 commit 423d533
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/development/airflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ sed -Ei "s|^AIRFLOW_UID=.*|AIRFLOW_UID=${USER_ID}|" .env
Before starting Airflow, initialise the database:

```bash
docker compose up airflow-init
docker-compose up airflow-init
```

Now start all services:

```bash
docker compose up -d
docker-compose up -d
```

Airflow UI will now be available at `http://localhost:8080/`. Default username and password are both `airflow`.
Expand All @@ -86,13 +86,13 @@ docker ps
To stop Airflow, run:

```bash
docker compose down
docker-compose down
```

To cleanup the Airflow database, run:

```bash
docker compose down --volumes --remove-orphans
docker-compose down --volumes --remove-orphans
```

### Advanced configuration
Expand Down

0 comments on commit 423d533

Please sign in to comment.