@@ -43,7 +43,7 @@ Coder for Docker works with the following platforms:
43
43
only run this if you'd like a clean install.
44
44
45
45
1 . In the terminal, run the following to download the resources you need,
46
- include the images, and set up your Coder deployment (if you're using the
46
+ including the images, and set up your Coder deployment (if you're using the
47
47
terminal in Docker Desktop, omit the slashes and run as a single-line
48
48
command):
49
49
@@ -72,9 +72,8 @@ Coder for Docker works with the following platforms:
72
72
1 . Launch a web browser and navigate to the URL provided by Coder (e.g.,
73
73
` http://localhost:7080 ` ). Log in using the credentials Coder provided.
74
74
75
- 1 . At this point, you can [ create a workspace] ( ../workspaces/create.md ) using
76
- one of the ** Packaged** images by clicking on ** New workspace** in the center
77
- of the UI.
75
+ 1 . [ Create a workspace] ( ../workspaces/create.md ) using one of the ** Packaged**
76
+ images by clicking on ** New workspace** in the center of the UI.
78
77
79
78
At this point, you're ready to use your workspace. See our
80
79
[ getting started guide] ( ../getting-started/docker.md ) for detailed instructions
@@ -210,17 +209,17 @@ If you're interested in using Docker as a workspace provider, please see our
210
209
211
210
## Accessing the local PostgreSQL database
212
211
213
- To query the local PostgreSQL database using the ` psql ` [ terminal-based
214
- front-end] ( https://www.postgresql.org/docs/13/app-psql.html ) , follow these
215
- steps.
212
+ To query the local PostgreSQL database using the ` psql `
213
+ [ terminal-based front-end] ( https://www.postgresql.org/docs/13/app-psql.html ) ,
214
+ follow these steps.
216
215
217
216
1 . Run ` docker ps ` to get the name of the Coder container.
218
217
219
218
1 . Exec into the Coder container and connect to the database.
220
219
221
- ``` console
222
- docker exec -it <CODER_CONTAINER> psql --username=coder --host=0.0.0.0 --port=5433 --dbname=postgres
223
- ```
220
+ ``` console
221
+ docker exec -it <CODER_CONTAINER> psql --username=coder --host=0.0.0.0 --port=5433 --dbname=postgres
222
+ ```
224
223
225
224
## Known issues
226
225
0 commit comments