Skip to content

Commit 2fa28e2

Browse files
✏️ Update readme to match new name of docker compose file.
1 parent 71f3626 commit 2fa28e2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Writing code and developing in this application requires running three services:
2121
2. To run the database locally, you must have Docker installed as well as Docker Compose; afterwards, run the following command from the root directory:
2222

2323
```bash
24-
docker compose -f docker-compose.dev.yml up -d
24+
docker compose -f docker-compose.development.yaml up -d
2525
```
2626

2727
or if your docker compose is old
2828

2929
```bash
30-
docker-compose -f docker-compose.dev.yml up -d
30+
docker-compose -f docker-compose.development.yaml up -d
3131
```
3232

3333
This command will start API, SQL, Email, and S3 services, and bind them to appropriate ports on your local machine as specified in [docker-compose.development.yaml](./docker-compose.development.yaml).
@@ -37,13 +37,13 @@ Writing code and developing in this application requires running three services:
3737
```bash
3838
dev up db
3939
#
40-
docker compose -f docker-compose.development.yml up db
40+
docker compose -f docker-compose.development.yaml up db
4141
```
4242

4343
If you need to debug the restore, you can connect to the running SQL Server via
4444

4545
```bash
46-
docker compose -f docker-compose.development.yml exec -it db bash
46+
docker compose -f docker-compose.development.yaml exec -it db bash
4747
```
4848

4949
4. The first time you start the application, you must create a bucket named `documents` and an Access Key. Copy the access key id and secret and drop those values into the appropriate spots in the environment file. The Minio Web interface located at http://localhost:9090. Subsequent starts, it is not required to access the Minio interface.
@@ -55,7 +55,7 @@ Writing code and developing in this application requires running three services:
5555
```bash
5656
dev up
5757
# or
58-
docker compose -f docker-compose.development.yml up
58+
docker compose -f docker-compose.development.yaml up
5959
```
6060

6161
If you don't use docker see the "Without Docker" section
@@ -74,7 +74,7 @@ Writing code and developing in this application requires running three services:
7474

7575
```bash
7676
docker compose \
77-
-f docker-compose.dev.yml \
77+
-f docker-compose.development.yaml \
7878
exec -it db \
7979
/opt/mssql-tools/bin/sqlcmd \
8080
-U sa \
@@ -104,7 +104,7 @@ Writing code and developing in this application requires running three services:
104104
To access the Database console directly use:
105105

106106
```bash
107-
docker compose -f docker-compose.development.yml exec db /opt/mssql-tools/bin/sqlcmd -U sa -s localhost -P Testing1122
107+
docker compose -f docker-compose.development.yaml exec db /opt/mssql-tools/bin/sqlcmd -U sa -s localhost -P Testing1122
108108
```
109109

110110
#### Without Docker

0 commit comments

Comments
 (0)