Skip to content

Commit

Permalink
Fix console formatting bleeding into normal text in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mikolajkapica authored Jul 12, 2024
1 parent 8aebdba commit f7c0ee1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,27 +46,27 @@ Make sure you have Docker installed on your machine. You can download and instal

1. **Clone the repository:**

```bash
git clone https://github.com/mikolajkapica/elevator-system.git
cd elevator-system
```console
$ git clone https://github.com/mikolajkapica/elevator-system.git
$ cd elevator-system
```

Build the Docker image:


```bash
docker build -t elevator-system .
```console
$ docker build -t elevator-system .
```

This command builds a Docker image named elevator-system based on the Dockerfile in the project directory.

Run the Docker container:

```bash
docker run -it elevator-system
```console
$ docker run -it elevator-system
```
This command starts the application inside a Docker container. The -it flag ensures an interactive terminal session.
You can also use docker compose to run the application.
```

## License
This project is licensed under the GPL-3.0 License. See the LICENSE file for more details.
Expand Down

0 comments on commit f7c0ee1

Please sign in to comment.