-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile-webtools
24 lines (21 loc) · 984 Bytes
/
Dockerfile-webtools
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ohdsi/broadsea-webtools:latest
ENV env="webapi-postgresql"
ENV datasource_driverClassName="org.postgresql.Driver"
ENV datasource_url="jdbc:postgresql://pgsql-docker-container:5432/fhirform"
ENV datasource.cdm.schema="cdm"
ENV datasource.ohdsi.schema="ohdsi"
ENV datasource_username="fhirform"
ENV datasource_password="root123"
ENV spring.jpa.properties.hibernate.default_schema="ohdsi"
ENV spring.jpa.properties.hibernate.dialect="org.hibernate.dialect.PostgreSQLDialect"
ENV spring.batch.repository.tableprefix="ohdsi.BATCH_"
ENV flyway_datasource_driverClassName="org.postgresql.Driver"
ENV flyway_datasource_url="jdbc:postgresql://pgsql-docker-container:5432/fhirform"
ENV flyway_schemas="ohdsi"
ENV flyway.placeholders.ohdsiSchema="ohdsi"
ENV flyway_datasource_username="fhirform"
ENV flyway_datasource_password="root123"
ENV flyway.locations="classpath:db/migration/postgresql"
COPY config/config-local.js /usr/local/tomcat/webapps/atlas/js
# Expose the port
EXPOSE 8080