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
% docker run -p 9002:9002 -p 3000:3000 --env-file <env_file_name> dolthub/dolt-workbench:latest
67
+
```
68
+
69
+
Or use the `-e` flag:
70
+
71
+
```bash
72
+
% docker run -p 9002:9002 -p 3000:3000 -e DW_DB_CONNECTION_URI="mysql://<username>:<password>@host.docker.internal:3306/dolt_workbench" dolthub/dolt-workbench:latest
73
+
```
74
+
75
+
Note that we do not create the database `dolt_workbench` for you. You must create it
76
+
yourself:
77
+
78
+
```sql
79
+
CREATEDATABASEdolt_workbench;
80
+
```
81
+
44
82
## Connecting to an internet accessible database
45
83
46
84
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