Skip to content

Commit

Permalink
Fix port conflicts when running other Ansible dev environments (ansib…
Browse files Browse the repository at this point in the history
…le#14701)

AAP: Docker port conflicts
  • Loading branch information
slemrmartin authored Jan 4, 2024
1 parent a06a2a8 commit 403f545
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ services:
{% if control_plane_node_count|int == 1 %}
- "6899:6899"
- "8080:8080" # unused but mapped for debugging
- "8888:8888" # jupyter notebook
- "${AWX_JUPYTER_PORT:-8888}:8888" # jupyter notebook
- "8013:8013" # http
- "8043:8043" # https
- "2222:2222" # receptor foo node
Expand Down Expand Up @@ -201,6 +201,8 @@ services:
POSTGRES_PASSWORD: {{ pg_password }}
volumes:
- "awx_db:/var/lib/postgresql/data"
ports:
- "${AWX_PG_PORT:-5432}:5432"
{% if enable_pgbouncer|bool %}
pgbouncer:
image: bitnami/pgbouncer:latest
Expand Down

0 comments on commit 403f545

Please sign in to comment.