Skip to content

Commit e990586

Browse files
authored
update to aerie v3.6.0 and add aerie_workspace service to docker-compose (#23)
1 parent 0642418 commit e990586

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.env.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
REPOSITORY_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

66
GITHUB_USER=
77
GITHUB_TOKEN=

docker-compose.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff 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

228252
networks:
229253
aerie_net:

0 commit comments

Comments
 (0)