Skip to content

Commit 05a1027

Browse files
Add suggestion from review
1 parent d28fd7f commit 05a1027

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

14/umbraco-cms/fundamentals/setup/install/running-umbraco-on-docker-locally.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,22 @@ Before you can run Umbraco in Docker, you need to have the following installed:
1616

1717
Installing Umbraco with the Docker file and Docker Compose file is a two-step process.
1818

19-
First, create a folder to hold your project and enter that folder.
19+
1. Create a folder to hold your project and enter that folder.
2020

2121
```bash
2222
mkdir MyDockerProject
2323
cd MyDockerProject
2424
```
25-
Next create your Umbraco project using the Umbraco Templates, and remember to use the `--add-docker` flag to include the Docker files.
26-
Conventionally this is named the same as the folder, but is not a requirement.
25+
2. Create your Umbraco project using the Umbraco Templates, and remember to use the `--add-docker` flag to include the Docker files.
26+
27+
28+
Conventionally this is named the same as the folder, but it is not a requirement.
2729

2830
```bash
2931
dotnet new umbraco -n MyDockerProject --add-docker
3032
```
3133

32-
Now we need to add some additional files to make docker compose work. We can do this using the `umbraco-compose` template, passing the project name we specified earlier to the `-P` parameter:
34+
Now we need to add some additional files to make docker compose work. We can do this using the umbraco-compose template, passing the project name we specified earlier to the -P parameter:
3335

3436
```bash
3537
dotnet new umbraco-compose -P "MyDockerProject"
@@ -52,7 +54,7 @@ The final folder structure looks like this:
5254
* `startup.sh`
5355
* `docker-compose.yml`
5456

55-
The project now includes docker files for both Umbraco and the SQL server database.
57+
The project now includes docker files for both Umbraco and the SQL server database.
5658

5759
It also includes additional scripts to launch and configure the database and a `.env` file with the database password.
5860

0 commit comments

Comments
 (0)