Skip to content

Commit

Permalink
fix: change ports configurable in docker-compose-stage.yaml (#942)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsong-rh authored Jun 13, 2024
1 parent b3e7d45 commit a347c4a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tools/docker/docker-compose-stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ services:
command: >-
podman system service --time=0 tcp://0.0.0.0:8888
ports:
- 8888:8888
- '${EDA_PODMAN_PORT:-8888}:8888'
volumes:
- 'podman_data:/home/podman/.local/share/containers/storage'
depends_on:
Expand All @@ -58,7 +58,7 @@ services:
image: "${EDA_UI_IMAGE:-quay.io/ansible/eda-ui:main}"
environment: *common-env
ports:
- '8443:443'
- '${EDA_UI_PORT:-8443}:443'
depends_on:
eda-api:
condition: service_healthy
Expand All @@ -77,7 +77,7 @@ services:
-w ${EDA_API_WORKERS:-4} aap_eda.wsgi
--access-logfile -
ports:
- '8000:8000'
- '${EDA_API_PORT:-8000}:8000'
depends_on:
redis:
condition: service_healthy
Expand All @@ -98,7 +98,7 @@ services:
- >-
daphne -b 0.0.0.0 -p 8000 aap_eda.asgi:application
ports:
- '8001:8000'
- '${EDA_WS_PORT:-8001}:8000'
depends_on:
eda-api:
condition: service_healthy
Expand Down Expand Up @@ -167,7 +167,7 @@ services:
POSTGRESQL_ADMIN_PASSWORD: secret
POSTGRESQL_DATABASE: eda
ports:
- '5432:5432'
- '${EDA_PG_PORT:-5432}:5432'
volumes:
- 'postgres_data:/var/lib/pgsql/data'
healthcheck:
Expand All @@ -180,7 +180,7 @@ services:
redis:
image: 'quay.io/fedora/redis-6:latest'
ports:
- '6379:6379'
- '${EDA_REDIS_PORT:-6379}:6379'
healthcheck:
test: [ 'CMD', 'redis-cli', 'ping' ]
interval: 5s
Expand Down

0 comments on commit a347c4a

Please sign in to comment.