File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,11 @@ RUN pip install --upgrade pip\
1313# -------------------------------------------------------------------------------------
1414# Install NetBox
1515# -------------------------------------------------------------------------------------
16+ # Remove redis==3.4.1 from the requirements.txt file as a workaround to #4910
17+ # https://github.com/netbox-community/netbox/issues/4910, required for version 2.8.8 and earlier
1618RUN git clone --single-branch --branch ${netbox_ver} https://github.com/netbox-community/netbox.git /opt/netbox/ && \
1719 cd /opt/netbox/ && \
20+ sed -i '/^redis\=\= /d' /opt/netbox/requirements.txt && \
1821 pip install -r /opt/netbox/requirements.txt
1922
2023# Make the django-debug-toolbar always visible when DEBUG is enabled,
You can’t perform that action at this time.
0 commit comments