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: docker/README.md
+6-10Lines changed: 6 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ You can also open the datatracker project folder and click the **Reopen in conta
45
45
46
46
### Usage
47
47
48
-
- Under the **Run and Debug** tab, you can run the server with the debugger attached using **Run Server** (F5). Once the server is ready to accept connections, you'll be prompted to open in a browser. You can also open [http://localhost:8000](http://localhost:8000) in a browser.
48
+
- Under the **Run and Debug** tab, you can run the server with the debugger attached using **Run Server** (F5). Once the server is ready to accept connections, you'll be prompted to open in a browser. Navigate to [http://localhost:8000](http://localhost:8000) in your preferred browser.
49
49
50
50
> An alternate profile **Run Server with Debug Toolbar** is also available from the dropdown menu, which displays various tools
51
51
on top of the webpage. However, note that this configuration has a significant performance impact.
@@ -64,11 +64,7 @@ You can also open the datatracker project folder and click the **Reopen in conta
64
64
65
65

66
66
67
-
- Under the **SQL Tools** tab, a connection **Local Dev** is preconfigured to connect to the DB container. Using this tool, you can list tables, view records and execute SQL queries directly from VS Code.
68
-
69
-
> The port `3306` is also exposed to the host automatically, should you prefer to use your own SQL tool.
70
-
71
-

67
+
- The pgAdmin web interface, a PostgreSQL DB browser / management UI, is available at [http://localhost:8000/pgadmin/](http://localhost:8000/pgadmin/).
72
68
73
69
- Under the **Task Explorer** tab, a list of available preconfigured tasks is displayed. *(You may need to expand the tree to `src > vscode` to see it.)* These are common scritps you can run *(e.g. run tests, fetch assets, etc.)*.
74
70
@@ -103,7 +99,7 @@ You can also open the datatracker project folder and click the **Reopen in conta
103
99
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
104
100
105
101
```
106
-
ietf/manage.py runserver 0.0.0.0:8000
102
+
ietf/manage.py runserver 0.0.0.0:8001
107
103
```
108
104
109
105
to start the datatracker.
@@ -161,11 +157,11 @@ docker compose down -v --rmi all
161
157
docker image prune
162
158
```
163
159
164
-
### Accessing MariaDB Port
160
+
### Accessing PostgreSQL Port
165
161
166
-
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)*:
162
+
The port is exposed but not automatically mapped to `5432` to avoid potential conflicts with the host. To get the mapped port, run the command*(from the project `/docker` directory)*:
0 commit comments