Skip to content
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
22 changes: 22 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
version: "3.7"
services:
aerie_action:
container_name: aerie_action
depends_on: [ "postgres" ]
environment:
HASURA_GRAPHQL_ADMIN_SECRET: "${HASURA_GRAPHQL_ADMIN_SECRET}"
LOG_FILE: console
LOG_LEVEL: info
MERLIN_GRAPHQL_URL: http://hasura:8080/v1/graphql
AERIE_DB_HOST: postgres
AERIE_DB_PORT: 5432
ACTION_DB_USER: "${SEQUENCING_USERNAME}"
ACTION_DB_PASSWORD: "${SEQUENCING_PASSWORD}"
ACTION_LOCAL_STORE: /usr/src/app/action_file_store
ACTION_WORKER_NUM: 1
ACTION_MAX_WORKER_NUM: 1
image: "${REPOSITORY_DOCKER_URL}/aerie-action:${DOCKER_TAG}"
ports: [ "27186:27186" ]
restart: always
volumes:
- aerie_file_store:/usr/src/app/action_file_store
networks:
- aerie_net
aerie_gateway:
container_name: aerie_gateway
depends_on: ["postgres"]
Expand Down
Loading