Skip to content

Commit

Permalink
Fix typos in getting-started
Browse files Browse the repository at this point in the history
  • Loading branch information
t2d committed Dec 18, 2024
1 parent d39202c commit ba8f1bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@ This is not recommended for production use, but it is a good way to get started.

```shell
podman compose up -d --build
```
```

Using docker:

```shell
docker-compose up -d --build
docker compose up -d --build
```

2. Initialize the database:

Using podman:

```shell
podman exec userli bin/console doctrine:schema:create
podman compose exec userli bin/console doctrine:schema:create
```

Using docker:

```shell
docker exec userli bin/console doctrine:schema:create
docker compose exec userli bin/console doctrine:schema:create
```

3. Open your browser and go to [http://localhost:8000](http://localhost:8000)

0 comments on commit ba8f1bf

Please sign in to comment.