-
Notifications
You must be signed in to change notification settings - Fork 2
docker dev env files moved from DRLS-Docker repo #1
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
Conversation
|
Overall I think this looks pretty good. Can you add some instruction in the |
|
I still can't get this to work, I get an error when running
Not sure what the issue is. |
hmm, not sure why its failing, seems like something wrong with docker-compose. @KeeyanGhoreshi Can you try running |
|
ok doing that gets it to run, and I can open DTR and register a client and visit the request generator, but searching for patients gives a network failure. From the |
@KeeyanGhoreshi you need to specify the Edit: I think the reason your build is failing is you may not be giving docker desktop enough resources. Did you do the following part of the set up guide when setting up docker desktop?
|
|
I had not turned the memory up, missed that part of the instructions. With increased memory running
Running |
|
The stacktrace from keycloak: |
The first issue when you're running The second issue relating to keycloak I'm less sure about since the keycloak image is external and not maintained by us. In the docker-compose-dev.yml file, keycloak imports the fhir server realm from the test-ehr directory and mounts a volume to persist data. In docker-compose.yml (used by services:
keycloak:
container_name: rems_dev_keycloak
# command: ["-Djboss.http.port=8180"]
ports:
- '8180:8080'
environment:
- KEYCLOAK_USER=admin
- KEYCLOAK_PASSWORD=admin
- DB_VENDOR=h2
- KEYCLOAK_IMPORT=/resources/ClientFhirServerRealm.json
volumes:
- keycloak-data:/opt/jboss/keycloak/standalone/data/
- '../test-ehr/src/main/resources/ClientFhirServerRealm.json:/resources/ClientFhirServerRealm.json'
image: hkong2/keycloakservices:
keycloak:
container_name: rems_prod_keycloak
# command: ["-Djboss.http.port=8180"]
ports:
- '8180:8080'
environment:
- KEYCLOAK_USER=admin
- KEYCLOAK_PASSWORD=admin
- DB_VENDOR=h2
# - KEYCLOAK_IMPORT=/resources/ClientFhirServerRealm.json. **<-- commented out**
volumes:
- keycloak-data:/opt/jboss/keycloak/standalone/data/
# - './resources/ClientFhirServerRealm.json:/resources/ClientFhirServerRealm.json' **<-- commented out**
image: hkong2/keycloak |
|
Updated all my repositories, I think two of them were out of date. The |
|
|
|
Fixed the issue, has some misconfigurations and zscaler was blocking the VSAC value set loading |
No description provided.