File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 88 pip uninstall datajoint -y
99
1010USER root
11- ENV DJ_HOST fakeservices.datajoint.io
11+ ENV DJ_HOST db
1212ENV DJ_USER root
1313ENV DJ_PASS password
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ It is often useful in development to connect to DataJoint's relational database
9696Connect as follows to the database running within your developer environment:
9797
9898```
99- mysql -hfakeservices.datajoint.io -uroot -ppassword
99+ mysql -hdb -uroot -ppassword
100100```
101101
102102### Documentation
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ def enable_filepath_feature(monkeypatch):
6161@pytest .fixture (scope = "session" )
6262def db_creds_test () -> Dict :
6363 return dict (
64- host = os .getenv ("DJ_TEST_HOST" , "fakeservices.datajoint.io " ),
64+ host = os .getenv ("DJ_TEST_HOST" , "db " ),
6565 user = os .getenv ("DJ_TEST_USER" , "datajoint" ),
6666 password = os .getenv ("DJ_TEST_PASSWORD" , "datajoint" ),
6767 )
@@ -70,7 +70,7 @@ def db_creds_test() -> Dict:
7070@pytest .fixture (scope = "session" )
7171def db_creds_root () -> Dict :
7272 return dict (
73- host = os .getenv ("DJ_HOST" , "fakeservices.datajoint.io " ),
73+ host = os .getenv ("DJ_HOST" , "db " ),
7474 user = os .getenv ("DJ_USER" , "root" ),
7575 password = os .getenv ("DJ_PASS" , "password" ),
7676 )
You can’t perform that action at this time.
0 commit comments