Skip to content

Commit

Permalink
Fix Companion environment variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
youngest committed Feb 4, 2022
1 parent e3d6c4e commit 93aedb3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion docker-compose.swarm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ services:
environment:
COMPANION_AWS_KEY: "$COMPANION_AWS_KEY"
COMPANION_AWS_SECRET: "$COMPANION_AWS_SECRET"
COMPANION_BUCKET: "$COMPANION_BUCKET"
COMPANION_AWS_BUCKET: "$COMPANION_AWS_BUCKET"
COMPANION_AWS_REGION: "$COMPANION_AWS_REGION"
COMPANION_DOMAIN: "https://companion.${ENVIRONMENT}mlmodelscope.org"

mq:
networks:
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ services:
companion:
image: transloadit/companion:sha-a74ae35
environment:
COMPANION_AWS_KEY: "$AWS_ACCESS_KEY_ID"
COMPANION_AWS_SECRET: "$AWS_SECRET_ACCESS_KEY"
COMPANION_AWS_BUCKET: "$UPLOAD_BUCKET"
COMPANION_AWS_REGION: "$UPLOAD_BUCKET_REGION"
COMPANION_AWS_KEY: "$COMPANION_AWS_KEY"
COMPANION_AWS_SECRET: "$COMPANION_AWS_SECRET"
COMPANION_AWS_BUCKET: "$COMPANION_AWS_BUCKET"
COMPANION_AWS_REGION: "$COMPANION_AWS_REGION"
COMPANION_DOMAIN: "http://companion.${ENVIRONMENT}mlmodelscope.org"
COMPANION_DATADIR: "/data"

Expand Down

0 comments on commit 93aedb3

Please sign in to comment.