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: pages/vi/vi-docker-tutorial.md
+11-14Lines changed: 11 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,8 @@ Once confirmed, follow the directions below to spin up Planet on your OS.
46
46
47
47
## Linux - Run Planet Community with Docker
48
48
49
+
**Hint**: The code block below may seem lengthy, but once you understand it, you can copy multiple lines (or the entire block) and paste it into your terminal to run everything at once, rather than executing each line individually.
50
+
49
51
```bash
50
52
# pull the latest tags for the planet, db-init, and chatapi Docker images
# with the exception of db-init, which may finished running and exited already
78
-
# if chatapi service is restarting or exited, please ignore it for now as we are working on a fix
79
-
docker container ls -a
80
-
81
-
# follow the log in action, press 'control+c' to exit the logs view
82
-
docker compose -p planet logs -f
83
76
```
84
77
85
78
## macOS/Windows - Run Planet Community with Docker
86
79
87
80
-**macOS**: run commands below in the terminal app of your choice.
88
81
-**Windows**: run commands below in your Git Bash app.
89
82
83
+
**Hint**: The code block below may seem lengthy, but once you understand it, you can copy multiple lines (or the entire block) and paste it into your terminal or Git Bash to run everything at once, rather than executing each line individually.
84
+
90
85
<!--
91
86
- **Windows with WSL**: run commands below in your Debian app.
92
87
- **Windows without WSL**: run commands below in Git Bash.
# see if the docker containers are running, you may also do this in the docker desktop app
121
120
# ensure it says "Up" or "Running" in the status column
122
121
# with the exception of db-init, which may finished running and exited already
@@ -127,21 +126,19 @@ docker container ls -a
127
126
docker compose -p planet logs -f
128
127
```
129
128
130
-
## Services and Ports
131
-
132
129
The services will be accessible on the following ports:
133
130
134
131
-**Planet:** 3300
135
132
-**ChatAPI:** 5050
136
133
-**CouchDB:** 2300
137
134
138
-
To verify that the Planet service is running, visit [http://localhost:3300](http://localhost:3300) or [http://127.0.0.1:3300](http://127.0.0.1:3300) and check if the planet configuration screen appears. **Please do not configure the planet yet; we'll handle that in the next step.**
139
-
140
-
You can also verify that the other services are running by visiting these URLs in your browser:
135
+
You can verify the CouchDB and ChatAPI services are running by visiting these URLs in your browser:
To verify that the Planet service is running, visit [http://localhost:3300](http://localhost:3300) or [http://127.0.0.1:3300](http://127.0.0.1:3300) and check if the planet configuration screen appears. **Please leave the page open and we will handle the configuration of planet in the next step.**
141
+
145
142
## More about Docker and Docker Compose Commands
146
143
147
144
Here are a few common Docker CLI commands you might need when working with `planet`:
0 commit comments