Skip to content

Commit ca1cab1

Browse files
author
Drew Yang
committed
fix: 🐛 minor bug fix
1 parent a1d7bd5 commit ca1cab1

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

docker-compose.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,20 @@
33
# Navigate to http://localhost/docs/
44
services:
55
docs:
6-
build:
7-
args:
8-
- BOT_PAT
96
image: datajoint/datajoint-docs
107
environment:
118
- MODE
129
volumes:
1310
- .:/main
1411
ports:
15-
- 80:80
12+
- 8000:8000
1613
command:
1714
- sh
1815
- -c
1916
- |
2017
set -e
2118
if echo "$${MODE}" | grep -i live &>/dev/null; then
22-
mkdocs serve --config-file ./mkdocs.yaml
19+
mkdocs serve --config-file ./mkdocs.yaml -a 0.0.0.0:8000
2320
elif echo "$${MODE}" | grep -i build &>/dev/null; then
2421
mkdocs build --config-file ./mkdocs.yaml
2522
else

mkdocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ extra:
131131
- icon: fontawesome/brands/python
132132
link: https://pypi.org/user/datajointbot
133133
name: PyPI
134-
TODO: - icon: fontawesome/brands/stack-overflow
134+
- icon: fontawesome/brands/stack-overflow
135135
link: https://stackoverflow.com/questions/tagged/datajoint
136136
name: StackOverflow
137137
- icon: fontawesome/brands/youtube

0 commit comments

Comments
 (0)