Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update FDA to version 0.21.0 in quickstart example #544

Merged
merged 4 commits into from
Mar 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions quickstart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ services:
- ../quickstart/exampledata/config/keycloak:/docker-entrypoint-initdb.d
fda-api:
container_name: fda-api
image: registry.gitlab.com/z-e-u-s/fda/fda-backend:0.16.0
image: registry.gitlab.com/z-e-u-s/fda/fda-backend:0.21.0
network_mode: host
expose:
- 8000
Expand All @@ -172,14 +172,15 @@ services:
POSTGRES_HOST: localhost
POSTGRES_PORT: 25432
DJANGO_SECRET_KEY: "django-insecure-*w($$5i@@iq%!ygufa%%@nfdplt(!e#hoahnjy^@6xdutl8mlqz"
ALLOWED_HOSTS: '["*"]'
CORS_ALLOWED_ORIGINS: '["http://localhost"]'
ALLOWED_HOSTS: "*"
CORS_ALLOWED_ORIGINS: "http://localhost"
KEYCLOAK_SERVER_URL: "http://localhost:8080"
KEYCLOAK_REALM: logprep
KEYCLOAK_CLIENT_ID: fda-backend
KEYCLOAK_CLIENT_SECRET: tYfkKygb1g2Hf6fmAInoq3XPK1OILbSp
KEYCLOAK_CLIENT_ID_FOR_AUTHZ_ROLES: fda
SERVICE_BASE_URL: 'http://localhost:8000/'
SECURE_REDIRECT_EXEMPT: '[".*localhost.*"]'
depends_on:
fda-db:
condition: service_healthy
Expand All @@ -205,7 +206,7 @@ services:
timeout: 5s
retries: 10
fda-frontend:
image: registry.gitlab.com/z-e-u-s/fda/fda-frontend:0.16.0
image: registry.gitlab.com/z-e-u-s/fda/fda-frontend:0.21.0
container_name: fda-frontend
network_mode: host
restart: always
Expand Down
Loading