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
Copy file name to clipboardExpand all lines: readme.md
+39-1Lines changed: 39 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,21 @@ And that's it. Open your web browser and go to `http://localhost:8000/` if you h
103
103
sudo docker compose up -d --pull always
104
104
```
105
105
106
+
4. **Extra:**
107
+
You can check the status of the containers with:
108
+
```bash
109
+
sudo docker container ls
110
+
```
111
+
Check the logs with:
112
+
```bash
113
+
sudo docker container logs softserve_web_1
114
+
sudo docker container logs softserve_db_1
115
+
```
116
+
And shut down the containers with:
117
+
```bash
118
+
sudo docker compose down
119
+
```
120
+
106
121
And that's it! You can now access the application opening your web browser and going to `http://localhost`, or `http://<instance-ip>`if you have it externally. This runs on the port 80 by default.
107
122
108
123
This creates `a container with the Django application` and another `container with the database (MySQL)`, but with the same migrations and data as the beta SQlite uploaded in this repository.
@@ -140,7 +155,30 @@ This creates `a container with the Django application` and another `container wi
0 commit comments