Skip to content

Commit

Permalink
build(engine): Add signing secret env vars to docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
daryllimyt committed Mar 8, 2024
1 parent 6e8efd3 commit 233429e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ services:
- ./:/app
environment:
API_MODULE: "tracecat.api:app"
TRACECAT__SIGNING_SECRET: ${TRACECAT__SIGNING_SECRET}
container_name: api
restart: unless-stopped
depends_on:
Expand All @@ -24,7 +25,7 @@ services:
environment:
API_MODULE: "tracecat.runner:app"
OPENAI_API_KEY: ${OPENAI_API_KEY}
RUNNER_SECRET: ${RUNNER_SECRET}
TRACECAT__SIGNING_SECRET: ${TRACECAT__SIGNING_SECRET}
container_name: runner
restart: unless-stopped
depends_on:
Expand Down

0 comments on commit 233429e

Please sign in to comment.