Skip to content

Commit f9c0b97

Browse files
Avoid EDA dev env port conflict
* Not many, if any, folks use the notebook feature. It kind of goes in and out of popularity. We've used it in the past when we work on features that require visualization (i.e. network graphs, workflows). Might as well keep it around in case we use it again.
1 parent 65655f8 commit f9c0b97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

awx/settings/development.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from .defaults import * # NOQA
2222

2323
# awx-manage shell_plus --notebook
24-
NOTEBOOK_ARGUMENTS = ['--NotebookApp.token=', '--ip', '0.0.0.0', '--port', '8888', '--allow-root', '--no-browser']
24+
NOTEBOOK_ARGUMENTS = ['--NotebookApp.token=', '--ip', '0.0.0.0', '--port', '9888', '--allow-root', '--no-browser']
2525

2626
# print SQL queries in shell_plus
2727
SHELL_PLUS_PRINT_SQL = False

tools/docker-compose/ansible/roles/sources/templates/docker-compose.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ services:
6464
{% if control_plane_node_count|int == 1 %}
6565
- "6899:6899"
6666
- "8080:8080" # unused but mapped for debugging
67-
- "${AWX_JUPYTER_PORT:-8888}:8888" # jupyter notebook
67+
- "${AWX_JUPYTER_PORT:-9888}:9888" # jupyter notebook
6868
- "8013:8013" # http
6969
- "8043:8043" # https
7070
- "2222:2222" # receptor foo node

0 commit comments

Comments
 (0)