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
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,17 @@ yourself:
82
82
CREATEDATABASEdolt_workbench;
83
83
```
84
84
85
+
### Specifying a different GraphQL API URL
86
+
87
+
When running this Docker image locally, GraphQL API requests are routed to the GraphQL
88
+
server running at `http://localhost:9002/graphql`. In some cases you may want to specify a
89
+
different url to route GraphQL API requests, and you can do so using the following
90
+
environment variable:
91
+
92
+
```bash
93
+
% docker run -p 9002:9002 -p 3000:3000 -e GRAPHQLAPI_URL="[your-host]:9002/graphql" dolthub/dolt-workbench:latest
94
+
```
95
+
85
96
## Connecting to an internet accessible database
86
97
87
98
If your database is already internet accessible (i.e. your database is hosted on a service like [AWS RDS](https://aws.amazon.com/rds/) or [Hosted Dolt](https://hosted.doltdb.com)), simply enter your database connection information through the UI.
0 commit comments