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
docker-compose -f docker-compose.yml -f docker/docker-compose.extend-custom.yml up -d
99
-
docker-compose exec app /bin/sh /docker-init.sh
98
+
dockercompose -f docker-compose.yml -f docker/docker-compose.extend-custom.yml up -d
99
+
dockercompose exec app /bin/sh /docker-init.sh
100
100
```
101
101
102
102
2. Wait for the containers to initialize. Upon completion, you will be dropped into a shell from which you can start the datatracker and execute related commands as usual, for example
@@ -120,7 +120,7 @@ The containers will automatically be shut down on Linux / macOS.
120
120
On Windows, type the command
121
121
122
122
```sh
123
-
docker-compose down
123
+
dockercompose down
124
124
```
125
125
126
126
to terminate the containers.
@@ -138,9 +138,9 @@ cd docker
138
138
139
139
On Windows:
140
140
```sh
141
-
docker-compose down -v
142
-
docker-compose pull db
143
-
docker-compose build --no-cache db
141
+
dockercompose down -v
142
+
dockercompose pull db
143
+
dockercompose build --no-cache db
144
144
```
145
145
146
146
### Clean all
@@ -156,15 +156,15 @@ cd docker
156
156
157
157
On Windows:
158
158
```sh
159
-
docker-compose down -v --rmi all
159
+
dockercompose down -v --rmi all
160
160
docker image prune
161
161
```
162
162
163
163
### Accessing MariaDB Port
164
164
165
165
The port is exposed but not mapped to `3306` to avoid potential conflicts with the host. To get the mapped port, run the command*(from the project `/docker` directory)*:
0 commit comments