Skip to content

Commit 801f272

Browse files
authored
Merge pull request #238 from benjaminysmith/patch-2
Add 127.0.0.1: to beginning of docker run commands
2 parents 1444201 + c3e2d99 commit 801f272

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/epidata_development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ debugging. For example:
110110

111111
```bash
112112
# launch the database
113-
docker run --rm -p 13306:3306 \
113+
docker run --rm -p 127.0.0.1:13306:3306 \
114114
--network delphi-net --name delphi_database_epidata \
115115
delphi_database_epidata
116116

117117
# launch the web server
118-
docker run --rm -p 10080:80 \
118+
docker run --rm -p 127.0.0.1:10080:80 \
119119
--network delphi-net --name delphi_web_epidata \
120120
delphi_web_epidata
121121
```

0 commit comments

Comments
 (0)