File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 11REPOSITORY_DOCKER_URL = ghcr.io/nasa-ammos
22
33# choose a specific Aerie version
4- DOCKER_TAG = v3.5 .0
4+ DOCKER_TAG = v3.6 .0
55
66GITHUB_USER =
77GITHUB_TOKEN =
Original file line number Diff line number Diff line change @@ -175,6 +175,29 @@ services:
175175 restart : always
176176 networks :
177177 - aerie_net
178+ aerie_workspace :
179+ container_name : aerie_workspace
180+ depends_on : [ "postgres" ]
181+ environment :
182+ AERIE_DB_HOST : postgres
183+ AERIE_DB_PORT : 5432
184+ SEQUENCING_DB_USER : " ${SEQUENCING_USERNAME}"
185+ SEQUENCING_DB_PASSWORD : " ${SEQUENCING_PASSWORD}"
186+ WORKSPACE_STORE : /usr/src/ws
187+ WORKSPACE_PORT : 28000
188+ HASURA_GRAPHQL_JWT_SECRET : " ${HASURA_GRAPHQL_JWT_SECRET}"
189+ HASURA_GRAPHQL_ADMIN_SECRET : " ${HASURA_GRAPHQL_ADMIN_SECRET}"
190+ JAVA_OPTS : >
191+ -Dorg.slf4j.simpleLogger.defaultLogLevel=INFO
192+ -Dorg.slf4j.simpleLogger.log.com.zaxxer.hikari=INFO
193+ -Dorg.slf4j.simpleLogger.logFile=System.err
194+ image : " ${REPOSITORY_DOCKER_URL}/aerie-workspace:${DOCKER_TAG}"
195+ ports : [ "28000:28000" ]
196+ restart : always
197+ volumes :
198+ - workspace_file_store:/usr/src/ws
199+ networks :
200+ - aerie_net
178201 hasura :
179202 container_name : aerie_hasura
180203 depends_on : ["postgres"]
@@ -224,6 +247,7 @@ volumes:
224247 aerie_file_store :
225248 mission_file_store :
226249 postgres_data :
250+ workspace_file_store :
227251
228252networks :
229253 aerie_net :
You can’t perform that action at this time.
0 commit comments