Skip to content

Commit

Permalink
SDCSRM-529-add-support-frontend (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanks91 authored Jul 25, 2024
1 parent 4df751b commit bfb1dd4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ RH_SERVICE_PORT=8071
# RH UI
RH_UI_PORT=9092


# Support API
SUPPORT_API_PORT=9095
SUPPORT_API_PORT=9095

# Support Front End
SUPPORT_FRONTEND_PORT=9096
17 changes: 16 additions & 1 deletion rm-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,22 @@ services:
timeout: 3s
retries: 20
start_period: 5s


support-frontend:
container_name: support-frontend
image: europe-west2-docker.pkg.dev/ssdc-rm-ci/docker/srm-support-frontend:latest
environment:
- APP_CONFIG=DevelopmentConfig
- PORT=${SUPPORT_FRONTEND_PORT}
ports:
- "${SUPPORT_FRONTEND_PORT}:9096"
healthcheck:
test: [ "CMD", "python", "-c", "import urllib.request as r; r.urlopen('http://localhost:9096/info/')" ]
interval: 5s
timeout: 3s
retries: 20
start_period: 5s

networks:
default:
external: true
Expand Down

0 comments on commit bfb1dd4

Please sign in to comment.