File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,12 @@ Windows) this repository using
62
62
docker-compose up -d
63
63
` ` `
64
64
65
+ or (for _Docker v1.28_ and above)
66
+
67
+ ` ` ` bash
68
+ docker compose up -d
69
+ ` ` `
70
+
65
71
If you haven' t pulled the image from the _GitHub Container Registry_ (_GHCR_), it' ll first build
66
72
the image using the ` Dockerfile` , then launch the _docker network_. If an image already exists
67
73
locally, it' ll not be rebuilt. To force a rebuild from the `Dockerfile` before launching the
@@ -93,12 +99,19 @@ spawned and standard input/output is connected to the terminal.
93
99
v9.1.1
94
100
```
95
101
96
- 7. To shut down the _docker network_, run (in the terminal where you ran `docker-compose up -d`)
102
+ 7. To shut down the _docker network_, run (in the terminal where you ran `docker-compose up -d` or
103
+ `docker compose up -d`)
97
104
98
105
```bash
99
106
docker-compose down
100
107
```
101
108
109
+ or (for _Docker v1.28_ and above)
110
+
111
+ ```bash
112
+ docker compose down
113
+ ```
114
+
102
115
8. To install all the dependencies (in `package.json`), run
103
116
104
117
```bash
You can’t perform that action at this time.
0 commit comments