Skip to content

Commit 0199889

Browse files
committed
Remove references to fakeservices.datajoint.io
1 parent bad072b commit 0199889

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ RUN \
88
pip uninstall datajoint -y
99

1010
USER root
11-
ENV DJ_HOST fakeservices.datajoint.io
11+
ENV DJ_HOST db
1212
ENV DJ_USER root
1313
ENV DJ_PASS password

docs/src/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ It is often useful in development to connect to DataJoint's relational database
9696
Connect 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

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def enable_filepath_feature(monkeypatch):
6161
@pytest.fixture(scope="session")
6262
def 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")
7171
def 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
)

0 commit comments

Comments
 (0)