You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current name of the docker compose file is `docker-compose.yml`. The readme command examples indicated that the name was `docker compose.yml`. This commit updates all README cases of this error to reflect the actual name of the file, making the command functional again.
Copy file name to clipboardExpand all lines: README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -37,15 +37,15 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
37
37
38
38
docker compose pull
39
39
40
-
docker compose -f dockercompose.yml --compatibility up -d
40
+
docker compose -f docker-compose.yml --compatibility up -d
41
41
```
42
42
43
43
To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.
44
44
45
45
For example to expose the system to all network interfaces.
46
46
47
47
```
48
-
LISTEN_IP="0.0.0.0" docker compose -f dockercompose.yml --compatibility up -d
48
+
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
49
49
```
50
50
51
51
- Windows Machine
@@ -59,15 +59,15 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
59
59
60
60
docker compose pull
61
61
62
-
docker compose -f dockercompose.yml --compatibility up -d
62
+
docker compose -f docker-compose.yml --compatibility up -d
63
63
```
64
64
65
65
To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.
66
66
67
67
For example to expose the system to all network interfaces.
68
68
69
69
```
70
-
LISTEN_IP="0.0.0.0" docker compose -f dockercompose.yml --compatibility up -d
70
+
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
71
71
```
72
72
73
73
- To use the latest development version
@@ -83,15 +83,15 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
83
83
84
84
docker compose pull
85
85
86
-
docker compose -f dockercompose.yml --compatibility up -d
86
+
docker compose -f docker-compose.yml --compatibility up -d
87
87
```
88
88
89
89
To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.
90
90
91
91
For example to expose the system to all network interfaces.
92
92
93
93
```
94
-
LISTEN_IP="0.0.0.0" docker compose -f dockercompose.yml --compatibility up -d
94
+
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
95
95
```
96
96
97
97
- Windows Machine
@@ -105,15 +105,15 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
105
105
106
106
docker compose pull
107
107
108
-
docker compose -f dockercompose.yml --compatibility up -d
108
+
docker compose -f docker-compose.yml --compatibility up -d
109
109
```
110
110
111
111
To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command.
112
112
113
113
For example to expose the system to all network interfaces.
114
114
115
115
```
116
-
LISTEN_IP="0.0.0.0" docker compose -f dockercompose.yml --compatibility up -d
116
+
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
0 commit comments